25 lines
438 B
Python
Raw Normal View History

2022-07-23 21:51:13 +02:00
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import os
import report
MQTT_USER = "user"
MQTT_PASS = "pass"
MQTT_SERVER = "localhost"
MQTT_TOPIC = "hifi/spotify"
DEVICE_NAME = "Multimedia"
#
# Logging
#
__BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
APP_NAME = "spotify"
2022-08-18 12:39:48 +02:00
LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
2022-07-23 21:51:13 +02:00
LOGLVL = 'DEBUG'
LOGHOST = 'cutelog'
LOGPORT = 19996
2022-08-18 12:39:48 +02:00
formatter = report.SHORT_FMT