1db08b1e9b
Mirror to GitHub (Archive Method) / mirror (push) Failing after 15s
Mirror to GitHub (Rsync Method) / mirror (push) Failing after 15s
Mirror to GitHub / mirror (push) Failing after 14s
Test and Lint / backend-test (push) Successful in 1m3s
continuous-integration/drone/push Build is passing
Test and Lint / frontend-test (push) Successful in 2m15s
Version and Release / version-bump (push) Successful in 35s
Version and Release / trigger-drone (push) Successful in 3s
- Add three different approaches for mirroring to GitHub - Approach 1: Filter out sensitive files on a separate branch - Approach 2: Use git archive with .gitattributes exclusions - Approach 3: Use rsync for flexible file filtering - Add exclusion lists for sensitive files and directories - Protect production configs, environment files, and private data This allows maintaining a public GitHub mirror while keeping sensitive configuration and data private on the Gitea instance. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
323 B
Plaintext
12 lines
323 B
Plaintext
# Files to exclude from GitHub mirror
|
|
.env* export-ignore
|
|
docker-compose.prod.yml export-ignore
|
|
.claudedocs/ export-ignore
|
|
backend/data/ export-ignore
|
|
backend/storage/ export-ignore
|
|
backend/.env* export-ignore
|
|
frontend/.env* export-ignore
|
|
secrets/ export-ignore
|
|
*.key export-ignore
|
|
*.pem export-ignore
|
|
.gitea/ export-ignore |