From a4e84ec3e89a5e02abae1f027f5b4aad5a2770e1 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 27 Nov 2023 08:53:09 -1000 Subject: [PATCH] add more info on Postgres env file --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 3de555b2..2c5479d5 100644 --- a/README.md +++ b/README.md @@ -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 ```