fix: proper .gitignore excluding cache dirs and secrets
This commit is contained in:
parent
b92ae0efaa
commit
7f4ad4fe88
1 changed files with 64 additions and 14 deletions
78
.gitignore
vendored
78
.gitignore
vendored
|
|
@ -1,23 +1,73 @@
|
||||||
|
# ═══════════════════════════════════════════════════════════
|
||||||
|
# WalletPress — .gitignore (RMI universal + WP-specific)
|
||||||
|
# ═══════════════════════════════════════════════════════════
|
||||||
|
|
||||||
|
# ── SECRETS (zero tolerance) ────────────────────────────────
|
||||||
.env
|
.env
|
||||||
node_modules/
|
.env.*
|
||||||
.DS_Store
|
!.env.example
|
||||||
*.log
|
!.env.template
|
||||||
|
*.pem
|
||||||
|
*.key
|
||||||
|
*.p12
|
||||||
|
*.pfx
|
||||||
|
id_rsa
|
||||||
|
id_ed25519
|
||||||
|
*.session
|
||||||
|
credentials.json
|
||||||
|
service-account.json
|
||||||
|
wallet.json
|
||||||
|
vault.json
|
||||||
|
.secrets/
|
||||||
|
.rmi/wallets/
|
||||||
|
|
||||||
|
# ── Python ──────────────────────────────────────────────────
|
||||||
__pycache__/
|
__pycache__/
|
||||||
.mypy_cache/
|
*.pyc
|
||||||
.ruff_cache/
|
*.pyo
|
||||||
.pytest_cache/
|
.venv/
|
||||||
backend/.mypy_cache/
|
venv/
|
||||||
backend/.ruff_cache/
|
|
||||||
backend/.pytest_cache/
|
|
||||||
*.py[cod]
|
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
dist/
|
dist/
|
||||||
build/
|
build/
|
||||||
*.egg
|
.mypy_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
.pytest_cache/
|
||||||
|
htmlcov/
|
||||||
|
.coverage
|
||||||
|
backend/.mypy_cache/
|
||||||
|
backend/.ruff_cache/
|
||||||
|
backend/.pytest_cache/
|
||||||
|
backend/__pycache__/
|
||||||
|
backend/venv/
|
||||||
|
|
||||||
|
# ── Node (WordPress plugin) ────────────────────────────────
|
||||||
|
node_modules/
|
||||||
|
.npm/
|
||||||
|
wp-plugin/node_modules/
|
||||||
|
|
||||||
|
# ── Docker ──────────────────────────────────────────────────
|
||||||
|
docker-compose.override.yml
|
||||||
|
|
||||||
|
# ── Data (too large for git, use HF S3) ─────────────────────
|
||||||
|
data/
|
||||||
|
*.dump
|
||||||
|
*.rdb
|
||||||
|
*.tar.gz
|
||||||
|
|
||||||
|
# ── IDE ─────────────────────────────────────────────────────
|
||||||
.vscode/
|
.vscode/
|
||||||
.idea/
|
.idea/
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
Thumbs.db
|
*~
|
||||||
docker-compose.override.yml
|
.DS_Store
|
||||||
venv/
|
|
||||||
|
# ── Logs ────────────────────────────────────────────────────
|
||||||
|
*.log
|
||||||
|
logs/
|
||||||
|
|
||||||
|
# ── Cache ───────────────────────────────────────────────────
|
||||||
|
.cache/
|
||||||
|
tmp/
|
||||||
|
*.tmp
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue