Files
ttrpg-initiative-tracker/docker/.dockerignore
T

40 lines
701 B
Plaintext
Raw Normal View History

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
**/node_modules
2025-05-25 10:22:24 -04:00
# Ignore build output (it will be generated in the Docker image)
build
dist
# Ignore Docker files themselves (Caddyfile MUST stay in context for frontend build)
2025-05-25 10:22:24 -04:00
Dockerfile
Dockerfile.ws
2025-05-25 10:22:24 -04:00
.dockerignore
docker-compose.yml
2025-05-25 10:22:24 -04:00
# Ignore any local environment files if you have them
.env
.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/
.idea
2025-05-25 10:22:24 -04:00
*.suo
*.user
*.userosscache
*.sln.docstates
Thumbs.db
.DS_Store
# Ignore local sqlite data + scratch diagnostics (never bake into image)
data/
scratch/
tmp/