From 8a54eac2b1fa2580f28635a050ac5637d8d30502 Mon Sep 17 00:00:00 2001 From: FixO Dev Bot Date: Wed, 18 Jun 2025 07:09:00 +0000 Subject: [PATCH 1/2] fix: Automated changes for gitroomhq/postiz-app#822 by FixODev --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index bbdc5e48d..8a5564fe9 100644 --- a/.env.example +++ b/.env.example @@ -1,7 +1,7 @@ # Configuration reference: http://docs.postiz.com/configuration/reference # === Required Settings -DATABASE_URL="postgresql://postiz-user:postiz-password@localhost:5432/postiz-db-local" +DATABASE_URL="postgresql://postiz-local:postiz-local-pwd@localhost:5432/postiz-db-local" REDIS_URL="redis://localhost:6379" JWT_SECRET="random string for your JWT secret, make it long" From 0f0c403dd2f8c864d2dff730fa892130eff8523f Mon Sep 17 00:00:00 2001 From: FixO Dev Date: Wed, 18 Jun 2025 11:13:15 +0200 Subject: [PATCH 2/2] fix: Update PR based on feedback from @epavanello in gitroomhq/postiz-app#823 --- .env.example | 2 +- docker-compose.dev.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 8a5564fe9..bbdc5e48d 100644 --- a/.env.example +++ b/.env.example @@ -1,7 +1,7 @@ # Configuration reference: http://docs.postiz.com/configuration/reference # === Required Settings -DATABASE_URL="postgresql://postiz-local:postiz-local-pwd@localhost:5432/postiz-db-local" +DATABASE_URL="postgresql://postiz-user:postiz-password@localhost:5432/postiz-db-local" REDIS_URL="redis://localhost:6379" JWT_SECRET="random string for your JWT secret, make it long" diff --git a/docker-compose.dev.yaml b/docker-compose.dev.yaml index e0f060844..cdadfca5d 100644 --- a/docker-compose.dev.yaml +++ b/docker-compose.dev.yaml @@ -9,8 +9,8 @@ services: container_name: postiz-postgres restart: always environment: - POSTGRES_PASSWORD: postiz-local-pwd - POSTGRES_USER: postiz-local + POSTGRES_PASSWORD: postiz-password + POSTGRES_USER: postiz-user POSTGRES_DB: postiz-db-local volumes: - postgres-volume:/var/lib/postgresql/data