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

5
server/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM oven/bun:1-alpine
WORKDIR /app
COPY index.ts schema.sql ./
EXPOSE 3000
CMD ["bun", "run", "index.ts"]