SpreadSheets commited on
Commit
548cd96
·
1 Parent(s): 5758244

feat: add main application entry point

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=8080, debug=True)