13 lines
228 B
Python
13 lines
228 B
Python
import uvicorn
|
|
from app.main import app
|
|
from app.config import settings
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run(
|
|
app,
|
|
host="0.0.0.0",
|
|
port=settings.PORT,
|
|
reload=False,
|
|
workers=1
|
|
)
|