c5c9f750a3
Build and Deploy / Build & Push (push) Successful in 2m10s
Replace scraper container with backend API container. Web image no longer mounts a data volume or ships SQLite. Backend image runs Hono server with node-cron scheduler, owns the database exclusively. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
490 B
Plaintext
48 lines
490 B
Plaintext
# dependencies
|
|
/node_modules
|
|
/backend/node_modules
|
|
/backend/dist
|
|
/.pnp
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# scraped data — local only, not committed
|
|
/data/*.db
|
|
/data/*.db-shm
|
|
/data/*.db-wal
|
|
/backend/data/
|
|
parks.db
|
|
|
|
# env files
|
|
.env*
|
|
!.env.example
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|