| 1234567891011121314151617181920212223242526272829303132 |
- # Ignore git metadata
- .git
- .gitignore
- # Node modules and build artifacts
- node_modules
- .next
- out
- coverage
- dist
- # Local env files (will be provided via runtime)
- .env
- .env.*
- !.env.example
- # Editor/IDE
- .vscode
- .idea
- # Logs and misc
- *.log
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- # Data directories (PostgreSQL, Redis persistent data)
- data/redis
- data/postgres
- # Documentation submodule (not needed in container)
- docs-site
|