2020-09-06 15:27:47 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
|
2020-12-22 08:29:09 +01:00
|
|
|
import report
|
2020-09-06 15:27:47 +02:00
|
|
|
|
2020-09-09 10:35:08 +02:00
|
|
|
FULL_SCREEN = False
|
2020-09-06 15:27:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
# TCP-Server
|
|
|
|
#
|
|
|
|
server_out_secret = None # or set a secret to require client authentification: b'give_a_secret_string_here'
|
2021-01-07 00:17:56 +01:00
|
|
|
server_out_ip = 'localhost'
|
2020-09-06 15:27:47 +02:00
|
|
|
server_out_port = 37000
|
|
|
|
server_in_secret = None # or set a secret to require client authentification: b'give_a_secret_string_here'
|
2021-01-07 00:17:56 +01:00
|
|
|
server_in_ip = 'localhost'
|
|
|
|
server_in_port = 47000
|
2020-09-06 15:27:47 +02:00
|
|
|
|
|
|
|
server_garage_secret = None # or set a secret to require client authentification: b'give_a_secret_string_here'
|
2021-01-07 00:17:56 +01:00
|
|
|
server_garage_ip = 'localhost'
|
2020-09-06 15:27:47 +02:00
|
|
|
server_garage_port = 10000
|
|
|
|
# Logging
|
|
|
|
#
|
|
|
|
LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
|
|
|
|
|
2020-12-22 08:29:09 +01:00
|
|
|
# Logging
|
|
|
|
#
|
|
|
|
APP_NAME = 'smarthome'
|
|
|
|
LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
|
2021-01-07 00:49:16 +01:00
|
|
|
LOGLVL = 'DEBUG'
|
2020-12-22 08:29:09 +01:00
|
|
|
|
|
|
|
LOGHOST = 'localhost'
|
|
|
|
LOGPORT = 19996
|
|
|
|
|
|
|
|
formatter = report.LONG_FMT
|