qs-benchmarks / app.py
amitjamadagni's picture
Create app.py
a74b576
raw
history blame contribute delete
152 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()