GTD MVP: Expo app (iOS/Android/web) + Bun API + Postgres schema

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-07 16:36:06 -07:00
commit df4068bb3b
8 changed files with 262 additions and 0 deletions

22
server/docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
gtd-api:
build: .
container_name: gtd-api
restart: unless-stopped
env_file: .env
networks:
# Reach Postgres by service name `personal-db` on its network.
- personal-db_default
# Be reachable by paico-proxy for gtd.rehbock.xyz.
- caddy_net
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:3000/healthz || exit 1"]
interval: 30s
timeout: 5s
retries: 3
networks:
personal-db_default:
external: true
caddy_net:
external: true