From f5aea38d932e9fcdaab08657eeee26e6fceb0908 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 8 May 2022 16:48:33 +0200 Subject: [PATCH] config_example added --- config_example/config.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config_example/config.py 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