diff --git a/config_example/config.py b/config_example/config.py new file mode 100644 index 0000000..0355c86 --- /dev/null +++ b/config_example/config.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- + +import report + +secret = None + +# TCP-Server +# +server_ip = '127.0.0.1' +server_port = 10001 + +# Logging +# +APP_NAME = 'leyk_client' +LOGTARGET = 'logfile' # possible choices are: 'logfile' or 'stdout' +LOGLVL = 'DEBUG' + +LOGHOST = 'localhost' +LOGPORT = 19996 + +formatter = report.LONG_FMT