12 lines
228 B
Python
12 lines
228 B
Python
import uvicorn
|
|
|
|
from backend.app.config import settings
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run(
|
|
"backend.app.main:app",
|
|
host=settings.host,
|
|
port=settings.port,
|
|
reload=False,
|
|
)
|