Files
EZ-Homelab/.gitignore
EZ-Homelab 874a5b31ed Remove Nextcloud application files from repo and add to .gitignore
- Removed docker-compose/productivity/nextcloud/html/ directory containing Nextcloud app files
- Added exclusion for Nextcloud html directory in .gitignore
- Nextcloud should install its files via Docker volume mounts, not be committed to repo
2026-01-23 16:24:00 -05:00

81 lines
895 B
Plaintext

# Environment variables and secrets
.env
*.env
!.env.example
# Config directories with sensitive data
config/*/secrets/
config/*/*.key
config/*/*.pem
config/*/*.crt
config/*/db/
# Backup files
*.backup
*.bak
backups/
# OS files
.DS_Store
Thumbs.db
*.swp
*.swo
*~
# Editor files
.vscode/
.idea/
*.sublime-*
# Logs
*.log
logs/
# Temporary files
tmp/
temp/
*.tmp
# Docker volumes (if locally mounted)
volumes/
# Documentation builds
docs/_build/
docs/.doctrees/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Database files
*.sqlite
*.db
# Certificates and keys
*.pem
*.key
*.crt
*.cer
*.p12
*.pfx
acme.json
# Nextcloud application files (should be mounted via volumes)
docker-compose/productivity/nextcloud/html/
# Monitoring data (if stored locally)
prometheus-data/
grafana-data/
loki-data/