517e4454d0
*.db files were missing from .dockerignore - local builds could accidentally include the live oikos.db with real user data.
38 lines
392 B
Plaintext
38 lines
392 B
Plaintext
node_modules
|
|
.git
|
|
.github
|
|
.claude
|
|
.worktrees
|
|
.env
|
|
.env.*
|
|
|
|
# Database files (never include real data in image)
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
.nvmrc
|
|
.gitignore
|
|
.dockerignore
|
|
|
|
# Documentation (not needed at runtime)
|
|
docs/
|
|
|
|
# Tests
|
|
test-*.js
|
|
test-*.mjs
|
|
coverage/
|
|
|
|
# Scripts (dev-only)
|
|
scripts/
|
|
|
|
# Markdown files (README, CHANGELOG, etc.)
|
|
*.md
|
|
|
|
# IDE & OS
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|