product-detection/run_prod.py
2026-06-03 10:07:23 +01:00

13 lines
227 B
Python

"""
pip install hypercorn
"""
import asyncio
from hypercorn.config import Config
from hypercorn.asyncio import serve
from api_server import app
config = Config()
config.bind = ["0.0.0.0:2000"]
asyncio.run(serve(app, config))