23 lines
469 B
Plaintext
Raw Normal View History

2024-02-11 10:34:59 +01:00
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import os
import report
2024-03-19 16:44:21 +01:00
MQTT_USER = "{{ audio_bt_username }}"
MQTT_PASS = "{{ audio_bt_password }}"
MQTT_SERVER = "{{ audio_bt_hostname }}"
MQTT_TOPIC = "{{ audio_bt_topic }}"
2024-02-11 10:34:59 +01:00
#
# Logging
#
__BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
APP_NAME = "btaudio"
LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
LOGLVL = 'INFO'
LOGHOST = 'cutelog'
LOGPORT = 19996
formatter = report.SHORT_FMT