Leyk lightener application for raspberry pi and piface module.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

config.py 281B

12345678910111213141516171819
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. import report
  4. secret = b'give_a_secret_string_here'
  5. server_ip = '127.0.0.1'
  6. server_port = 10001
  7. # Logging
  8. #
  9. APP_NAME = 'leyk'
  10. LOGTARGET = 'stdout'
  11. LOGLVL = 'DEBUG'
  12. LOGHOST = 'localhost'
  13. LOGPORT = 19996
  14. formatter = report.LONG_FMT