File size: 152 Bytes
bf9283b
 
b4f0962
 
ed7cc88
bf9283b
1
2
3
4
5
6
import os
from subprocess import Popen
 
command = ["mercury", "run", f"0.0.0.0:{os.environ.get('PORT', 7860)}"] 
worker = Popen(command) 
worker.wait()