update gitignore
This commit is contained in:
+48
-25
@@ -1,41 +1,64 @@
|
|||||||
# Build output
|
# =============================================================================
|
||||||
|
# .gitignore — Python + Node + General
|
||||||
|
# =============================================================================
|
||||||
|
|
||||||
|
# ---- Python ----
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
*.egg-info/
|
||||||
|
*.egg
|
||||||
dist/
|
dist/
|
||||||
.astro/
|
build/
|
||||||
|
.eggs/
|
||||||
|
*.whl
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.pytest_cache/
|
||||||
|
.mypy_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
htmlcov/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
|
||||||
# Dependencies
|
# ---- Node / JavaScript ----
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
# Logs
|
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
pnpm-debug.log*
|
.pnpm-debug.log*
|
||||||
|
dist/
|
||||||
|
.next/
|
||||||
|
.nuxt/
|
||||||
|
.output/
|
||||||
|
|
||||||
# Environment variables
|
# ---- Docker ----
|
||||||
.env
|
# Don't ignore Dockerfile or docker-compose.yml themselves
|
||||||
.env.local
|
*.tar
|
||||||
.env.production
|
docker-compose.override.yml
|
||||||
.env.*.local
|
|
||||||
|
|
||||||
# macOS
|
# ---- IDEs / Editors ----
|
||||||
.DS_Store
|
|
||||||
|
|
||||||
# IDE
|
|
||||||
.vscode/
|
.vscode/
|
||||||
.idea/
|
.idea/
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
*~
|
*~
|
||||||
|
.DS_Store
|
||||||
# OS
|
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
||||||
# Package lock files (keep package-lock.json but ignore others)
|
# ---- OS ----
|
||||||
yarn.lock
|
*.log
|
||||||
pnpm-lock.yaml
|
*.pid
|
||||||
|
*.seed
|
||||||
|
|
||||||
# Local development
|
# ---- Environment / Secrets ----
|
||||||
*.local
|
.env
|
||||||
|
.env.*
|
||||||
# Build artifacts
|
!.env.example
|
||||||
*.tsbuildinfo
|
*.pem
|
||||||
|
*.key
|
||||||
|
|||||||
Reference in New Issue
Block a user