Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
njain
/
custchurnwebapp
like
0
Sleeping
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
njain
commited on
May 20, 2023
Commit
9890cb8
·
1 Parent(s):
9ff058b
Upload 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 subprocess import Popen
3
+
4
+
command = ["panel", "serve", f"nikhilj-custchurn.hf.space:{os.environ.get('PORT', 7860)}"]
5
+
worker = Popen(command)
6
+
worker.wait()