Fausto Busuito commited on
Commit
50d52f0
1 Parent(s): 372cd48

Application changes

Browse files
Files changed (1) hide show
  1. run.py +6 -0
run.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from app import create_app
2
+
3
+ app = create_app()
4
+
5
+ if __name__ == '__main__':
6
+ app.run(host='0.0.0.0', port=5000)