Docker

docker run --name some-fast --network faastapi -v /Users/alejandrosoto/Desktop/python/FastApiPostgres:/usr/src/app -p 5003:80  restapifast

Alembic

alembic is a pckage for creaate migrations

alembic init migration

create mifration file

alembic revision --autogenerate -m "messagge"  

throw the migration

alembic upgrade head    

Run the application in develop

uvicorn main:app --reload