Leyk lightener application for raspberry pi and piface module.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021
  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. LOG_TARGET_STDOUT = 'stdout'
  11. LOG_TARGET_FILE = 'logfile'
  12. LOGTARGET = LOG_TARGET_STDOUT
  13. LOGHOST = 'localhost'
  14. LOGPORT = 19996
  15. formatter = report.LONG_FMT