Setup your virtual environment and install packages
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txtCreate a file in the root called .env, and paste this:
APP_NAME="fullypack_fastapi"
DATABASE_URL="postgresql://user:password@localhost:5432/fullypack_fastapi"
fastapi dev appalembic revision --autogenerate -m "migration message"
alembic upgrade head