68 lines
899 B
Plaintext
68 lines
899 B
Plaintext
# Dependencies and build output (reinstalled/rebuilt in the image)
|
|
node_modules
|
|
dist
|
|
build
|
|
|
|
# Git and CI
|
|
.git
|
|
.github
|
|
|
|
# Environment and secrets (inject at runtime, not bake into the image)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Tests and coverage
|
|
test
|
|
coverage
|
|
.nyc_output
|
|
*.spec.ts
|
|
|
|
# Logs and runtime artifacts
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
.pnpm-debug.log*
|
|
|
|
# IDE and editor files
|
|
.idea
|
|
.vscode
|
|
.project
|
|
.classpath
|
|
.c9
|
|
*.launch
|
|
.settings
|
|
*.sublime-workspace
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local tooling not needed for production build
|
|
.husky
|
|
eslint.config.mjs
|
|
commitlint.config.ts
|
|
.prettierrc
|
|
.prettierignore
|
|
.editorconfig
|
|
|
|
# Docs and local dev config
|
|
README.md
|
|
**/*.md
|
|
docker-compose.yaml
|
|
Dockerfile
|
|
|
|
# Database migrations/seeders (not required for nest build)
|
|
database
|
|
|
|
# Misc local directories
|
|
IPGSW1Sale
|
|
.temp
|
|
.tmp
|
|
.cache
|
|
.parcel-cache
|