Files
NetBirdMSP-Appliance/.gitignore
twothatit 41ba835a99 Add i18n, branding, user management, health checks, and cleanup for deployment
- Multi-language support (EN/DE) with i18n engine and language files
- Configurable branding (name, subtitle, logo) in Settings
- Global default language and per-user language preference
- User management router with CRUD endpoints
- Customer status sync on start/stop/restart
- Health check fixes: derive status from container state, remove broken wget healthcheck
- Caddy reverse proxy and dashboard env templates for customer stacks
- Updated README with real hardware specs, prerequisites, and new features
- Removed .claude settings (JWT tokens) and build artifacts from tracking
- Updated .gitignore for .claude/ and Windows artifacts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-08 17:24:05 +01:00

70 lines
631 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
dist/
build/
.eggs/
# Virtual environment
venv/
.venv/
env/
# IDE
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
.idea/
*.swp
*.swo
*~
.history/
*.vsix
# Environment & secrets
.env
.env.local
.env.production
# Database
*.db
*.sqlite
*.sqlite3
data/
# Logs
logs/
*.log
# Backups
backups/
# OS
.DS_Store
Thumbs.db
desktop.ini
# Docker
docker-compose.override.yml
# Build artifacts
*.tar.gz
*.zip
# Test
.pytest_cache/
.coverage
htmlcov/
# Claude Code
.claude/
# Windows artifacts
nul