File size: 227 Bytes
c53fe07
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import subprocess, sys

try:
    subprocess.run([sys.executable, "-m", "uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "5000"])
except KeyboardInterrupt:
    print("\nImgAuth AI server stopped.")
    sys.exit(0)