# Ignore Git directory .git .gitignore # Ignore Node.js modules (they will be installed in the Docker image) node_modules **/node_modules # 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) Dockerfile Dockerfile.ws .dockerignore docker-compose.yml # Ignore any local environment files if you have them .env .env.local .env.development.local .env.test.local .env.production.local # Ignore IDE and OS-specific files .vscode/ .idea *.suo *.user *.userosscache *.sln.docstates Thumbs.db .DS_Store # Ignore local sqlite data + scratch diagnostics (never bake into image) data/ scratch/ tmp/