From 8e6b4327193103ddc8c44043ac6a7d27d9877880 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1lint=20Bokros?= Date: Fri, 17 Nov 2017 15:41:55 +0100 Subject: [PATCH] Add configuration --- config.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 config.py diff --git a/config.py b/config.py new file mode 100644 index 0000000..ab75fdb --- /dev/null +++ b/config.py @@ -0,0 +1,5 @@ +import os + +PUBLISHER_PORT = os.getenv('PUBLISHER_PORT', 7654) +RECEIVER_PORT = os.getenv('RECEIVER_PORT', 8765) +WEB_PORT = os.getenv('WEB_PORT', 4242)