https://github.com/shivvamm/fastapi-complete
Fullstack Serverside Rendering App with FastAPI and Jinja2 with Database migration and integration with alembic and sqlAlchemy
https://github.com/shivvamm/fastapi-complete
alembic fastapi jinja2 pytest python sqlalchemy
Last synced: about 1 month ago
JSON representation
Fullstack Serverside Rendering App with FastAPI and Jinja2 with Database migration and integration with alembic and sqlAlchemy
- Host: GitHub
- URL: https://github.com/shivvamm/fastapi-complete
- Owner: shivvamm
- Created: 2024-07-01T18:10:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-09T07:37:14.000Z (over 1 year ago)
- Last Synced: 2025-01-22T09:43:45.019Z (over 1 year ago)
- Topics: alembic, fastapi, jinja2, pytest, python, sqlalchemy
- Language: Python
- Homepage: https://fastapi-todo-iccx.onrender.com/auth/register-page
- Size: 41.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Alembic commands
To create a revision :
alembic revision -m "Create phone number for user column"
To upgrade the db with the revision:
alembic upgrade 7bcd40d197d0
To downgrade the db with the revision:
alembic downgrade -1