Local development now defaults to Dockerized PostgreSQL.
Copy the environment file:
cp .env.example .env.local
Start PostgreSQL:
pnpm db:start
Push the schema and seed/bootstrap the app data:
pnpm db:push
pnpm db:bootstrap
Start the app:
pnpm dev
127.0.0.15432bakerypostgrespostgresDATABASE_URL, so switching to an external Postgres later only requires changing that value in .env.local.pnpm db:stop.