dhineshkmar commited on
Commit
596a0cb
·
verified ·
1 Parent(s): 147dd82

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import os
2
+ from neurosight_app_with_auth import app
3
+
4
+ if __name__ == "__main__":
5
+ port = int(os.environ.get("PORT", 7860))
6
+ app.run(host="0.0.0.0", port=port, debug=False)