Config files were previously gitignored, causing CI/CD pipeline to fail because Docker would create directories instead of mounting the expected files. - Remove config/** from .gitignore - Track all config files (secrets still ignored) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
393 B
Plaintext
26 lines
393 B
Plaintext
node_modules/
|
|
.env
|
|
.env.local
|
|
.env.backup
|
|
dist/
|
|
*.log
|
|
.DS_Store
|
|
coverage/
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.venv
|
|
.playwright-mcp
|
|
|
|
#Data Import Files
|
|
data/vehicle-etl/output/*.sql
|
|
data/vehicle-etl/vehapi.key
|
|
data/vehicle-etl/snapshots/*
|
|
!data/vehicle-etl/snapshots/.gitkeep
|
|
|
|
# K8s-aligned secret mounts (real files ignored; examples committed)
|
|
secrets/**
|
|
!secrets/
|
|
!secrets/**/
|
|
!secrets/**/*.example |