14 lines
263 B
Python
14 lines
263 B
Python
"""
|
|
Entry point for running the FastAPI server with python -m backend.api
|
|
"""
|
|
|
|
import uvicorn
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run(
|
|
"backend.api:app",
|
|
host="0.0.0.0",
|
|
port=8000,
|
|
reload=True,
|
|
log_level="info"
|
|
) |