Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Duplicated from
Daudipdg/iroh
Asaffa
/
SheriaLM
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
DaudiAI
commited on
Apr 6
Commit
797ab7f
·
1 Parent(s):
8c279e2
add main.py entry point
Browse files
Files changed (1)
hide
show
main.py
+5
-0
main.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import subprocess
2
+
import sys
3
+
4
+
subprocess.run([sys.executable, "-m", "streamlit", "run", "ui/app.py",
5
+
"--server.port", "8501", "--server.address", "0.0.0.0"])