python-fastapi
Use poetry to install dependencies
poetry installUse the following commands to start server
# Development mode with auto-reload
uvicorn main:app --reload
# Production mode with multiple workers on specified port
uvicorn main:app --workers 5 --port 3000