Module to run and control leyk lightning
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

config.py 398B

12345678910111213141516171819202122
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. import os
  4. import report
  5. MQTT_USER = "user"
  6. MQTT_PASS = "password"
  7. MQTT_SERVER = "host"
  8. MQTT_TOPIC = "leyk"
  9. #
  10. # Logging
  11. #
  12. __BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
  13. APP_NAME = "leyk"
  14. LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
  15. LOGLVL = 'DEBUG'
  16. LOGHOST = 'cutelog'
  17. LOGPORT = 19996
  18. formatter = report.SHORT_FMT