File size: 200 Bytes
57bffe7
c104e4a
 
57bffe7
 
 
 
 
1
2
3
4
5
6
7
8
9
import os
import subprocess


on_hf_spaces = os.getenv("ON_HF_SPACES")
host = "0.0.0.0" if on_hf_spaces else "localhost"

subprocess.run(f"uvicorn app.main:app --host {host} --port 7860", shell=True)