Skip to content

Commit cdd2e62

Browse files
committed
chore: update docker-compose dev credentials
1 parent 499b9c9 commit cdd2e62

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

apps/api/docker-compose.dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ services:
2020
ports:
2121
- '5433:5432'
2222
environment:
23-
POSTGRES_USER: prisma
24-
POSTGRES_PASSWORD: prisma
25-
POSTGRES_DB: tests
23+
POSTGRES_USER: postgres
24+
POSTGRES_PASSWORD: postgres
25+
POSTGRES_DB: codeimage_test
2626

2727
volumes:
2828
postgres_data: null

scripts/make-env.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ async function buildApiTestEnv() {
130130
return;
131131
}
132132

133-
const defaultDatabase = 'postgresql://prisma:prisma@localhost:5433/tests';
133+
const defaultDatabase =
134+
'postgresql://postgres:postgres@localhost:5433/codeimage_test';
134135

135136
const env = {
136137
DATABASE_URL: defaultDatabase,

0 commit comments

Comments
 (0)