Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 421 Bytes

File metadata and controls

20 lines (16 loc) · 421 Bytes

poetry config --local virtualenvs.in-project true touch README.md poetry init -n poetry install

poetry add sqlalchemy poetry add alembic poetry add asyncpg poetry add psycopg2 poetry add psycopg2-binary poetry add "fastapi[all]"
alembic init migrations alembic revision --autogenerate -m 'initial' alembic upgrade head alembic upgrade 2d8bb3d81f97 alembic downgrade -1

uvicorn main:app --port 5678 --reload