summaryrefslogtreecommitdiffstats
path: root/back/config.py
diff options
context:
space:
mode:
authorsyn <isaqtm@gmail.com>2021-03-10 13:51:09 +0300
committersyn <isaqtm@gmail.com>2021-03-10 13:51:50 +0300
commitfed1685bde8fe5ca24cb9d248b2efd0eb6115d30 (patch)
tree7fd9608356a9b97498cf35bbbd77d8cbfda131c0 /back/config.py
parentb2330e3457abb2671ac46738c999b8c7432e0200 (diff)
downloadupnet-fed1685bde8fe5ca24cb9d248b2efd0eb6115d30.tar.gz
extract host+port to config
Diffstat (limited to 'back/config.py')
-rw-r--r--back/config.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/back/config.py b/back/config.py
index 367e24f..6fbfd95 100644
--- a/back/config.py
+++ b/back/config.py
@@ -12,3 +12,6 @@ APP_DIR = os.path.realpath(os.path.dirname(modpath))
REDIS_HOST = "localhost"
debug = True
+
+sanic_host = "localhost"
+sanic_port = 8001