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
This commit is contained in:
commit
47ba268131
310 changed files with 38429 additions and 0 deletions
84
.gitignore
vendored
Normal file
84
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
# ═══════════════════════════════════════════════════════════
|
||||
# PryScraper — .gitignore (RMI universal + Pry-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
|
||||
.coverage.*
|
||||
htmlcov/
|
||||
.coverage
|
||||
|
||||
# ── Pry-specific cache ──────────────────────────────────────
|
||||
.warmed_cookies/
|
||||
.proxy_cache/
|
||||
.browser_profiles/
|
||||
.screenshots/
|
||||
scraped_data/
|
||||
|
||||
# ── Node (extension) ────────────────────────────────────────
|
||||
node_modules/
|
||||
.npm/
|
||||
.pnpm-store/
|
||||
|
||||
# ── Docker ──────────────────────────────────────────────────
|
||||
docker-compose.override.yml
|
||||
|
||||
# ── Data (too large for git, use HF S3) ─────────────────────
|
||||
data/
|
||||
*.dump
|
||||
*.rdb
|
||||
*.dfs
|
||||
*.tar.gz
|
||||
!requirements/*.tar.gz
|
||||
|
||||
# ── IDE ─────────────────────────────────────────────────────
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.DS_Store
|
||||
|
||||
# ── OS ──────────────────────────────────────────────────────
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# ── Logs ────────────────────────────────────────────────────
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# ── Cache ───────────────────────────────────────────────────
|
||||
.cache/
|
||||
tmp/
|
||||
*.tmp
|
||||
Loading…
Add table
Add a link
Reference in a new issue