Files
Cozy-Den/.gitignore
T
Latte d5c23ecccd
CI / ci (push) Successful in 27s
Enterprise AI Code Review / ai-review (pull_request) Successful in 17s
Security / security (pull_request) Successful in 5s
CI / ci (pull_request) Successful in 27s
Docker / docker (pull_request) Failing after 8s
update gitignore
2026-03-01 17:18:54 +01:00

65 lines
860 B
Plaintext

# =============================================================================
# .gitignore — Python + Node + General
# =============================================================================
# ---- Python ----
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
*.egg
dist/
build/
.eggs/
*.whl
.venv/
venv/
env/
.tox/
.nox/
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
# ---- Node / JavaScript ----
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
dist/
.next/
.nuxt/
.output/
# ---- Docker ----
# Don't ignore Dockerfile or docker-compose.yml themselves
*.tar
docker-compose.override.yml
# ---- IDEs / Editors ----
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# ---- OS ----
*.log
*.pid
*.seed
# ---- Environment / Secrets ----
.env
.env.*
!.env.example
*.pem
*.key