add more info on Postgres env file

This commit is contained in:
Jesse Wierzbinski 2023-11-27 08:53:09 -10:00
parent 2c31884ada
commit a4e84ec3e8
No known key found for this signature in database

View file

@ -84,6 +84,9 @@ RUN chmod +x /docker-entrypoint-initdb.d/init.sh
5. Run migrations:
```bash
# Replace this with Postgres credentials
# This env file only needs to be there for migrations, it can be deleted after
echo "DATABASE_URL=postgres://xxx:xxx@xxx:xxx/xxx" > .env
bun migrate
```