mirror of
https://github.com/CloakHQ/CloakBrowser.git
synced 2026-06-23 11:41:46 +02:00
- 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
61 lines
612 B
Plaintext
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
|