app / run.py
Raksha11's picture
Deploy: integrate visual style analysis, remove filename scoring layer
c53fe07
Raw
History Blame Contribute Delete
227 Bytes
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)