# Table of Contents * [Overview](#overview) * [Requirements](#requirements) * [Alembic Database Migrations / Upgrades](#alembic-database-migrations--upgrades) * [Running the Server](#running-the-server) # Overview This project utilizes FastAPI, SQLAlchemy, and Alembic for creating a basic project * http://127.0.0.1:8000/docs # Requirements * FastAPI * alembic * SQLAlchemy * uvicorn # Alembic Database Migrations / Upgrades ```bash alembic upgrade head # Upgrade/create database alembic revision --autogenerate -m "My comment" # Commit/Create new migration script for database changes ``` # Running the Server ```bash uvicorn app.main:app --reload ```