Sfoglia il codice sorgente

config_example added

master
Dirk Alders 2 anni fa
parent
commit
f5aea38d93
1 ha cambiato i file con 22 aggiunte e 0 eliminazioni
  1. 22
    0
      config_example/config.py

+ 22
- 0
config_example/config.py Vedi File

@@ -0,0 +1,22 @@
1
+#!/usr/bin/env python
2
+# -*- coding: UTF-8 -*-
3
+
4
+import report
5
+
6
+secret = None
7
+
8
+# TCP-Server
9
+#
10
+server_ip = '127.0.0.1'
11
+server_port = 10001
12
+
13
+# Logging
14
+#
15
+APP_NAME = 'leyk_client'
16
+LOGTARGET = 'logfile'   # possible choices are: 'logfile' or 'stdout'
17
+LOGLVL = 'DEBUG'
18
+
19
+LOGHOST = 'localhost'
20
+LOGPORT = 19996
21
+
22
+formatter = report.LONG_FMT

Loading…
Annulla
Salva