basic script and web stub

This commit is contained in:
Mariano Ramon
2020-04-07 06:33:19 -03:00
commit 2f72244972
5 changed files with 93 additions and 0 deletions

6
dmapp/run.py Normal file
View File

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
from dmweb import create_app
app = create_app()
app.run(host='0.0.0.0', debug=True, threaded=True)