walletpress/.gitignore
cryptorugmunch e13bd4d774
Some checks are pending
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
CI / security (push) Waiting to run
CI / pre-commit (push) Waiting to run
CI / license (push) Waiting to run
CI / ai-review (push) Waiting to run
docs: apply fleet-template (16-artifact scaffold)
Adds missing standard artifacts:
- README.md (if missing)
- AGENTS.md (AI agent contract)
- PLAN.md (current sprint)
- STATUS.md (where we are)
- DEVELOPMENT.md (dev workflow)
- DEPLOYMENT.md (deploy procedure)
- TESTING.md (test strategy)
- DECISIONS.md (ADR index + templates)
- .github/CODEOWNERS
- .github/workflows/ci.yml

Preserves all existing artifacts.

Refs: RugMunchMedia/fleet-template
2026-07-02 02:07:06 +07:00

73 lines
2.2 KiB
Text

# ═══════════════════════════════════════════════════════════
# WalletPress — .gitignore (RMI universal + WP-specific)
# ═══════════════════════════════════════════════════════════
# ── SECRETS (zero tolerance) ────────────────────────────────
.env
.env.*
!.env.example
!.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__/
*.pyc
*.pyo
.venv/
venv/
*.egg-info/
dist/
build/
.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/
.idea/
*.swp
*.swo
*~
.DS_Store
# ── Logs ────────────────────────────────────────────────────
*.log
logs/
# ── Cache ───────────────────────────────────────────────────
.cache/
tmp/
*.tmp