wether station gui client
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

config.py 860B

12345678910111213141516171819202122232425262728293031323334
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. import report
  4. FULL_SCREEN = False
  5. # TCP-Server
  6. #
  7. server_out_secret = None # or set a secret to require client authentification: b'give_a_secret_string_here'
  8. server_out_ip = 'localhost'
  9. server_out_port = 37000
  10. server_in_secret = None # or set a secret to require client authentification: b'give_a_secret_string_here'
  11. server_in_ip = 'localhost'
  12. server_in_port = 47000
  13. server_garage_secret = None # or set a secret to require client authentification: b'give_a_secret_string_here'
  14. server_garage_ip = 'localhost'
  15. server_garage_port = 10000
  16. # Logging
  17. #
  18. LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
  19. # Logging
  20. #
  21. APP_NAME = 'smarthome'
  22. LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
  23. LOGLVL = 'DEBUG'
  24. LOGHOST = 'localhost'
  25. LOGPORT = 19996
  26. formatter = report.LONG_FMT