Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/docs/getting-started/01-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ services:
# CORS configuration assumes your app runs on localhost:3000
- CORS_ALLOWED_ORIGINS=https://localhost:3000
links:
- e2esdk-db
- db
depends_on:
app-db:
db:
condition: service_healthy
e2esdk-db-apply-migrations:
# Wait for migrations be to applied before starting (see below)
Expand All @@ -86,9 +86,9 @@ services:
- POSTGRESQL_URL=postgres://postgres:password@e2esdk-db:5432/e2esdk
command: pnpm db migrations apply
links:
- e2esdk-db
- db
depends_on:
e2esdk-db:
db:
condition: service_healthy
```

Expand Down