lterriel commited on
Commit
4263b49
·
1 Parent(s): 92da9af

new structure

Browse files
Files changed (3) hide show
  1. .DS_Store +0 -0
  2. app.py +3 -2
  3. wsgi.py +0 -5
.DS_Store CHANGED
Binary files a/.DS_Store and b/.DS_Store differ
 
app.py CHANGED
@@ -1,3 +1,4 @@
1
- import subprocess
2
 
3
- subprocess.Popen("python wsgi.py", shell=True).communicate()
 
 
1
+ from config import app
2
 
3
+ if __name__ == "__main__":
4
+ app.run(host="0.0.0.0", port=7860)
wsgi.py DELETED
@@ -1,5 +0,0 @@
1
- from app.config import app
2
-
3
- if __name__ == "__main__":
4
- app.run(host="0.0.0.0", port=7860)
5
-