|
|
|
|
@ -1,11 +0,0 @@
|
|
|
|
|
"""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()
|