product-detection/run_prod.py

13 lines
227 B
Python
Raw Permalink Normal View History

2026-06-03 11:07:23 +02:00
"""
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))