FastAPI / SQLModel / SQLAlchemy / Alembic Steps to install 1. create your virtual envirnoment using python -m venv name_of_venev ..... 2. install poetry using pip install poetry 3. Create a virtual environment and activate it. cd fastapi-template python3 -m venv venv source venv/bin/activate 4. Install poetry pip install poetry 5. Use poetry to install all other dependencies poetry install 6. Add your endpoints 7. Run the server using uvicorn Use the --reload option in development mode. uvicorn app.main:app --reload