public
anord
read
Ledger
Why work hard when you can work easier?
Languages
Repository composition by tracked source files.
TypeScript
86%
CSS
10%
SQL
3%
Shell
1%
HTML
0%
Trace
docker-compose.yml
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
docker-compose.yml
on main
Author
Date
Commit
Line
Code
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 1
services:
services:
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 2
bootstrap:
bootstrap:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 3
image: node:20-bookworm
image: node:20-bookworm
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 4
working_dir: /app
working_dir: /app
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 5
command: sh /app/infra/scripts/dev-bootstrap.sh
command: sh /app/infra/scripts/dev-bootstrap.sh
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 6
volumes:
volumes:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 7
- .:/app
- .:/app
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 8
- node_modules:/app/node_modules
- node_modules:/app/node_modules
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 9
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 10
postgres:
postgres:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 11
image: postgres:16-alpine
image: postgres:16-alpine
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 12
environment:
environment:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 13
POSTGRES_DB: ${POSTGRES_DB:-ledger}
POSTGRES_DB: ${POSTGRES_DB:-ledger}
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 14
POSTGRES_USER: ${POSTGRES_USER:-ledger}
POSTGRES_USER: ${POSTGRES_USER:-ledger}
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 15
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ledger}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ledger}
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 16
volumes:
volumes:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 17
- postgres_data:/var/lib/postgresql/data
- postgres_data:/var/lib/postgresql/data
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 18
- ./infra/postgres/init.sql:/docker-entrypoint-initdb.d/init.sql:ro
- ./infra/postgres/init.sql:/docker-entrypoint-initdb.d/init.sql:ro
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 19
healthcheck:
healthcheck:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 20
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-ledger} -d ${POSTGRES_DB:-ledger}"]
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-ledger} -d ${POSTGRES_DB:-ledger}"]
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 21
interval: 5s
interval: 5s
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 22
timeout: 5s
timeout: 5s
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 23
retries: 20
retries: 20
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 24
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 25
redis:
redis:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 26
image: redis:7-alpine
image: redis:7-alpine
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 27
volumes:
volumes:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 28
- redis_data:/data
- redis_data:/data
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 29
healthcheck:
healthcheck:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 30
test: ["CMD", "redis-cli", "ping"]
test: ["CMD", "redis-cli", "ping"]
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 31
interval: 5s
interval: 5s
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 32
timeout: 5s
timeout: 5s
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 33
retries: 20
retries: 20
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 34
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 35
api:
api:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 36
image: node:20-bookworm
image: node:20-bookworm
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 37
working_dir: /app
working_dir: /app
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 38
command: sh -c "npm run db:migrate && npm run db:seed && npm --workspace @ledger/api run dev"
command: sh -c "npm run db:migrate && npm run db:seed && npm --workspace @ledger/api run dev"
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 39
env_file:
env_file:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 40
- .env
- .env
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 41
ports:
ports:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 42
- "4000:4000"
- "4000:4000"
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 43
volumes:
volumes:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 44
- .:/app
- .:/app
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 45
- ./storage/uploads:/app/storage/uploads
- ./storage/uploads:/app/storage/uploads
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 46
- node_modules:/app/node_modules
- node_modules:/app/node_modules
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 47
depends_on:
depends_on:
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 48
bootstrap:
bootstrap:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 49
condition: service_completed_successfully
condition: service_completed_successfully
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 50
postgres:
postgres:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 51
condition: service_healthy
condition: service_healthy
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 52
redis:
redis:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 53
condition: service_healthy
condition: service_healthy
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 54
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 55
web:
web:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 56
image: node:20-bookworm
image: node:20-bookworm
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 57
working_dir: /app
working_dir: /app
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 58
command: npm --workspace @ledger/web run dev -- --host 0.0.0.0
command: npm --workspace @ledger/web run dev -- --host 0.0.0.0
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 59
env_file:
env_file:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 60
- .env
- .env
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 61
ports:
ports:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 62
- "5173:5173"
- "5173:5173"
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 63
volumes:
volumes:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 64
- .:/app
- .:/app
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 65
- node_modules:/app/node_modules
- node_modules:/app/node_modules
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 66
depends_on:
depends_on:
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 67
bootstrap:
bootstrap:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 68
condition: service_completed_successfully
condition: service_completed_successfully
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 69
api:
api:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 70
condition: service_started
condition: service_started
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 71
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 72
worker:
worker:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 73
image: node:20-bookworm
image: node:20-bookworm
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 74
working_dir: /app
working_dir: /app
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 75
command: npm --workspace @ledger/worker run dev
command: npm --workspace @ledger/worker run dev
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 76
env_file:
env_file:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 77
- .env
- .env
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 78
volumes:
volumes:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 79
- .:/app
- .:/app
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 80
- node_modules:/app/node_modules
- node_modules:/app/node_modules
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 81
depends_on:
depends_on:
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 82
bootstrap:
bootstrap:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 83
condition: service_completed_successfully
condition: service_completed_successfully
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 84
api:
api:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 85
condition: service_started
condition: service_started
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 86
redis:
redis:
same change
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 87
condition: service_healthy
condition: service_healthy
Alex Nord
3 months ago
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 88
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 89
volumes:
volumes:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 90
postgres_data:
postgres_data:
same change
4527dbd
First commit v2
- Full commit hash
4527dbdfcb1470a5c2476e2a5208f7bf48cc9d27- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 91
redis_data:
redis_data:
Alex Nord
3 months ago
462c463
Add first-run setup and gate demo seed behind config
- Full commit hash
462c463a79b4fe09e752f88c5c4eca69dac468fc- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 92
node_modules:
node_modules: