62 lines
709 B
Plaintext
62 lines
709 B
Plaintext
# Version control & IDEs
|
|
.git
|
|
.gitignore
|
|
.vscode
|
|
.idea
|
|
.agents
|
|
.gemini
|
|
|
|
# Build artifacts & compiled outputs
|
|
frontend
|
|
dist
|
|
**/dist
|
|
out-tsc
|
|
**/out-tsc
|
|
bazel-out
|
|
|
|
# Dependencies & framework caches
|
|
node_modules
|
|
**/node_modules
|
|
.angular
|
|
**/.angular
|
|
.nx
|
|
**/.nx
|
|
.sass-cache
|
|
**/.sass-cache
|
|
|
|
# Python virtual environments & caches
|
|
.venv
|
|
**/__pycache__
|
|
**/.mypy_cache
|
|
**/.ruff_cache
|
|
**/.pytest_cache
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info
|
|
|
|
# Testing & coverage
|
|
coverage
|
|
**/coverage
|
|
.coverage
|
|
htmlcov
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Environment & local deployment/dev files
|
|
.env*
|
|
!.env.example
|
|
ansible
|
|
deploy.sh
|
|
lint.sh
|
|
version_bump.sh
|
|
Makefile
|
|
README.md
|
|
CHANGES.md
|
|
typings
|
|
.DS_Store
|
|
Thumbs.db
|