Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled
41 lines
501 B
Plaintext
41 lines
501 B
Plaintext
# Dependencies - will be installed fresh in container
|
|
node_modules
|
|
.pnpm-store
|
|
|
|
# Turbo cache - not needed in Docker build
|
|
.turbo
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE and editor files
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Testing artifacts
|
|
coverage
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# Environment files - should be provided at runtime
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Docker files (avoid recursion)
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Documentation (not needed in image)
|
|
docs/
|
|
|
|
# CI/CD
|
|
.github/
|