Files
CloakBrowser/.gitignore
T
CloakHQ 8cecebf118 feat: move binary releases to wrapper repo, add auto-update check
- Binary downloads now served from CloakHQ/cloakbrowser releases (chromium-v* tags)
- Auto-update: background version check on launch, downloads newer binary for next use
- Graceful error on macOS/Windows (Linux-only binaries for now)
- Rate-limited (1hr), opt-out via CLOAKBROWSER_AUTO_UPDATE=false
- Add release-binary.yml workflow for anonymous binary releases
2026-02-25 19:38:32 +01:00

61 lines
612 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
dist/
build/
*.egg
.eggs/
# Virtual environment
.venv/
venv/
env/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Testing
.pytest_cache/
.coverage
htmlcov/
# Binary cache (downloaded chromium)
.cloakbrowser/
# Claude Code (private project context)
CLAUDE.md
.claude/
# JavaScript / Node.js
js/node_modules/
js/dist/
# Distribution
*.tar.gz
*.whl
AGENTS.md
.beads
# Private docs (launch posts, strategy)
docs/
# Internal test infrastructure (Docker, VPS-specific)
test-infra/
# Release scripts
publish.sh
deploy.sh
.env
debug