5 lines
223 B
Python
5 lines
223 B
Python
|
|
from ShyBadger.main import app
|
||
|
|
|
||
|
|
# disabled threading for easier session handleing in this demo project
|
||
|
|
# if threaded was True, as session store would be needed
|
||
|
|
app.run(host="0.0.0.0", port='80', debug=False, threaded=False)
|