- Add .dockerignore for runtime state files (sqlite, logs, secrets) - Bump Node.js base image from 18 to 20 - Add @types/better-sqlite3 dev dependency Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
309 B
Text
22 lines
309 B
Text
.git
|
|
.github
|
|
build
|
|
node_modules
|
|
|
|
# Runtime state files (should not be baked into image)
|
|
*.sqlite
|
|
*.sqlite-journal
|
|
*.sqlite-wal
|
|
*.sqlite-shm
|
|
*.db
|
|
admin.connect
|
|
admin.enroll
|
|
admin.npub
|
|
app.nprofile
|
|
.jwt_secret
|
|
|
|
# Runtime data directories
|
|
metric_cache/
|
|
metric_events/
|
|
bundler_events/
|
|
logs/
|