custchurnwebapp / app.py
njain's picture
Update app.py
9fc2cfc
raw
history blame
169 Bytes
import os
from subprocess import Popen
command = ["panel", "serve", f"njain-custchurn.hf.space:{os.environ.get('PORT', 7860)}"]
worker = Popen(command)
worker.wait()