set up pony and waitress skeletons

This commit is contained in:
Fabian Dill
2020-06-14 07:44:59 +02:00
parent c486cd77bb
commit 03a6227eef
4 changed files with 50 additions and 53 deletions

6
WebHost/run.py Normal file
View File

@@ -0,0 +1,6 @@
from waitress import serve
from __init__ import app
if __name__ == "__main__":
serve(app, port=80, threads=1)