2025-05-25 10:22:24 -04:00
|
|
|
# Ignore Git directory
|
|
|
|
|
.git
|
|
|
|
|
.gitignore
|
|
|
|
|
|
|
|
|
|
# Ignore Node.js modules (they will be installed in the Docker image)
|
|
|
|
|
node_modules
|
2026-07-01 14:39:47 -04:00
|
|
|
**/node_modules
|
2025-05-25 10:22:24 -04:00
|
|
|
|
|
|
|
|
# Ignore build output (it will be generated in the Docker image)
|
|
|
|
|
build
|
|
|
|
|
dist
|
|
|
|
|
|
2026-07-01 14:39:47 -04:00
|
|
|
# Ignore Docker files themselves (Caddyfile MUST stay in context for frontend build)
|
2025-05-25 10:22:24 -04:00
|
|
|
Dockerfile
|
2026-07-01 14:39:47 -04:00
|
|
|
Dockerfile.ws
|
2025-05-25 10:22:24 -04:00
|
|
|
.dockerignore
|
2026-07-01 14:39:47 -04:00
|
|
|
docker-compose.yml
|
2025-05-25 10:22:24 -04:00
|
|
|
|
|
|
|
|
# Ignore any local environment files if you have them
|
|
|
|
|
.env
|
2026-07-01 14:39:47 -04:00
|
|
|
.env.local
|
2025-05-25 10:22:24 -04:00
|
|
|
.env.development.local
|
|
|
|
|
.env.test.local
|
|
|
|
|
.env.production.local
|
|
|
|
|
|
|
|
|
|
# Ignore IDE and OS-specific files
|
|
|
|
|
.vscode/
|
2026-07-01 14:39:47 -04:00
|
|
|
.idea
|
2025-05-25 10:22:24 -04:00
|
|
|
*.suo
|
|
|
|
|
*.user
|
|
|
|
|
*.userosscache
|
|
|
|
|
*.sln.docstates
|
|
|
|
|
Thumbs.db
|
|
|
|
|
.DS_Store
|
2026-07-01 14:39:47 -04:00
|
|
|
|
|
|
|
|
# Ignore local sqlite data + scratch diagnostics (never bake into image)
|
|
|
|
|
data/
|
|
|
|
|
scratch/
|
|
|
|
|
tmp/
|