Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dhineshkmar
/
neurosight
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dhineshkmar
commited on
27 days ago
Commit
596a0cb
·
verified
·
1 Parent(s):
147dd82
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -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)