+ web_app

This commit is contained in:
oleting
2021-01-14 14:01:02 +01:00
parent f0547890c1
commit b045869591
11 changed files with 21 additions and 20 deletions

7
run_web.py Normal file
View File

@@ -0,0 +1,7 @@
from web_app import create_app
app = create_app()
if __name__ == '__main__':
app.run(port=7467 ,debug=False)