aboutsummaryrefslogtreecommitdiff
path: root/runserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'runserver.py')
-rw-r--r--runserver.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/runserver.py b/runserver.py
index d0bf9822..b9a10dd7 100644
--- a/runserver.py
+++ b/runserver.py
@@ -1,6 +1,8 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-
+import conf
from pyaggr3g470r import app
-app.run(host='0.0.0.0', debug=True) \ No newline at end of file
+app.run(host=conf.WEBSERVER_HOST, port=conf.WEBSERVER_PORT, \
+ debug=conf.WEBSERVER_DEBUG)
bgstack15