- Add Express.js backend with REST API - Implement comprehensive security measures (helmet, rate limiting, input validation) - Add Docker volume support for persistent JSON storage - Update container security (non-root user, minimal Alpine) - Add deployment and security documentation - Configure production-ready Docker setup with Coolify compatibility 🤖 Generated with Claude Code (https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
95 lines
1.1 KiB
Plaintext
95 lines
1.1 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
.bmad-core/
|
|
.bmad-creative-writing/
|
|
.bmad-infrastructure-devops/
|
|
.claude/
|
|
# Build outputs (will be rebuilt in container)
|
|
dist/
|
|
build/
|
|
out/
|
|
|
|
# Environment files (use container env vars instead)
|
|
.env
|
|
.env.*
|
|
|
|
# Data directory (use volume mount instead)
|
|
data/
|
|
*.json
|
|
|
|
# Git directory
|
|
.git/
|
|
.gitignore
|
|
|
|
# Docker files
|
|
docker-compose.yml
|
|
docker-compose.*.yml
|
|
Dockerfile
|
|
Dockerfile.*
|
|
.dockerignore
|
|
|
|
# IDE directories
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Coverage and test files
|
|
coverage/
|
|
.nyc_output
|
|
test/
|
|
tests/
|
|
__tests__/
|
|
*.test.js
|
|
*.test.ts
|
|
*.spec.js
|
|
*.spec.ts
|
|
|
|
# Documentation
|
|
README.md
|
|
docs/
|
|
*.md
|
|
!package.json
|
|
|
|
# Cache directories
|
|
.cache/
|
|
.parcel-cache/
|
|
.npm/
|
|
.eslintcache
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Claude Code specific
|
|
CLAUDE.md
|
|
**/docs/
|
|
|
|
# CI/CD files
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
.circleci/
|
|
|
|
# Other common files not needed in container
|
|
LICENSE
|
|
CHANGELOG.md
|