We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 499b9c9 commit cdd2e62Copy full SHA for cdd2e62
apps/api/docker-compose.dev.yml
@@ -20,9 +20,9 @@ services:
20
ports:
21
- '5433:5432'
22
environment:
23
- POSTGRES_USER: prisma
24
- POSTGRES_PASSWORD: prisma
25
- POSTGRES_DB: tests
+ POSTGRES_USER: postgres
+ POSTGRES_PASSWORD: postgres
+ POSTGRES_DB: codeimage_test
26
27
volumes:
28
postgres_data: null
scripts/make-env.ts
@@ -130,7 +130,8 @@ async function buildApiTestEnv() {
130
return;
131
}
132
133
- const defaultDatabase = 'postgresql://prisma:prisma@localhost:5433/tests';
+ const defaultDatabase =
134
+ 'postgresql://postgres:postgres@localhost:5433/codeimage_test';
135
136
const env = {
137
DATABASE_URL: defaultDatabase,
0 commit comments