11 lines
250 B
Python
11 lines
250 B
Python
"""Entry point for running the FastAPI application with uvicorn."""
|
|
import uvicorn
|
|
|
|
|
|
def main() -> None:
|
|
"""Run development server."""
|
|
uvicorn.run("app.main:app", host="0.0.0.0", port=8000, reload=True)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |