You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.0 KiB
66 lines
1.0 KiB
# Keep the repository focused on source and project metadata.
|
|
/*
|
|
!/.gitignore
|
|
!/backend/
|
|
!/front/
|
|
!/docker-compose.yml
|
|
!/deliverables/
|
|
|
|
# Local generators and temporary browser profiles are not delivery artifacts.
|
|
/deliverables/_work/
|
|
|
|
# Current delivery requirement is Word only; screenshots remain embedded in DOCX.
|
|
/deliverables/screenshots/
|
|
/deliverables/*.html
|
|
/deliverables/*.pdf
|
|
/deliverables/*.zip
|
|
/deliverables/*.json
|
|
/deliverables/*.txt
|
|
/deliverables/*.csv
|
|
|
|
# Dependencies
|
|
**/node_modules/
|
|
|
|
# Build output
|
|
**/dist/
|
|
**/build/
|
|
**/.vite/
|
|
**/.turbo/
|
|
**/coverage/
|
|
|
|
# Local environment and secrets
|
|
**/.env
|
|
**/.env.local
|
|
**/.env.*.local
|
|
!**/.env.example
|
|
|
|
# Local database/cache volumes
|
|
/mysql-data/
|
|
/redis-data/
|
|
**/*.db
|
|
**/*.sqlite
|
|
**/*.sqlite3
|
|
|
|
# Logs and runtime files
|
|
**/*.log
|
|
**/logs/
|
|
**/tmp/
|
|
**/temp/
|
|
**/uploads/
|
|
|
|
# Editor and OS files
|
|
.DS_Store
|
|
**/.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Package manager caches
|
|
**/.npm/
|
|
**/.pnpm-store/
|
|
**/.yarn/cache/
|
|
**/.yarn/unplugged/
|
|
**/.yarn/build-state.yml
|
|
**/.yarn/install-state.gz
|