dev #12
+48
-25
@@ -1,41 +1,64 @@
|
||||
# Build output
|
||||
# =============================================================================
|
||||
# .gitignore — Python + Node + General
|
||||
# =============================================================================
|
||||
|
||||
# ---- Python ----
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.egg-info/
|
||||
*.egg
|
||||
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/
|
||||
|
||||
# Logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
.pnpm-debug.log*
|
||||
dist/
|
||||
.next/
|
||||
.nuxt/
|
||||
.output/
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
.env.local
|
||||
.env.production
|
||||
.env.*.local
|
||||
# ---- Docker ----
|
||||
# Don't ignore Dockerfile or docker-compose.yml themselves
|
||||
*.tar
|
||||
docker-compose.override.yml
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
||||
# IDE
|
||||
# ---- IDEs / Editors ----
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Package lock files (keep package-lock.json but ignore others)
|
||||
yarn.lock
|
||||
pnpm-lock.yaml
|
||||
# ---- OS ----
|
||||
*.log
|
||||
*.pid
|
||||
*.seed
|
||||
|
||||
# Local development
|
||||
*.local
|
||||
|
||||
# Build artifacts
|
||||
*.tsbuildinfo
|
||||
# ---- Environment / Secrets ----
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
*.pem
|
||||
*.key
|
||||
|
||||
Reference in New Issue
Block a user