plotai-demo / app.py
Feynman Liang
Adds files
82d2266
raw
history blame
153 Bytes
import os
from subprocess import Popen
command = ["mercury", "run", f"0.0.0.0:{os.environ.get('PORT', 7860)}"]
worker = Popen(command)
worker.wait()