|
5 years ago | |
---|---|---|
alembic | 5 years ago | |
app | 5 years ago | |
.gitignore | 5 years ago | |
README.md | 5 years ago | |
alembic.ini | 5 years ago | |
config.py | 5 years ago | |
requirements.txt | 5 years ago |
This project utilizes FastAPI, SQLAlchemy, and Alembic for creating a basic project
alembic upgrade head # Upgrade/create database
alembic revision --autogenerate -m "My comment" # Commit/Create new migration script for database changes
uvicorn app.main:app --reload