13 lines
227 B
Python
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))
|