37 lines
384 B
Plaintext
37 lines
384 B
Plaintext
# Config files with secrets — NEVER commit
|
|
config.yaml
|
|
*.local.yaml
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
venv/
|
|
|
|
# Build outputs
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
deploy.log
|
|
|
|
# Gitea runner
|
|
.act_runner/
|
|
.cache/act/
|
|
|
|
# Git hooks (installed locally)
|
|
.githooks/
|
|
|
|
# PM2 ecosystem (local configs)
|
|
ecosystem.*.config.cjs
|