shomez commited on
Commit
735cee1
·
verified ·
1 Parent(s): 22487ca

Upload run.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. run.py +7 -0
run.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from app import create_app
2
+
3
+ app = create_app()
4
+ app.config.from_object('config.Config')
5
+
6
+ if __name__ == '__main__':
7
+ app.run(host='0.0.0.0', debug=app.config['DEBUG'])