tractatus/.rsyncignore
TheFlow 07427e91bc docs: Add Production Enforcement Showcase plan (TOP PRIORITY)
- Create comprehensive implementation plan for showcasing Tractatus enforcement
- Document strategic goal: prove framework works in production (MySovereignty)
- 3-phase approach: Quick wins (1h), Evidence page (2h), Metrics (4h)
- Includes code examples, visual design, success metrics
- Add NEXT_SESSION_PRIORITIES.md for quick session startup
- Update .rsyncignore to exclude internal planning docs

Strategic context:
- MySovereignty.digital validates Tractatus research
- Framework enforcement (not aspirational) is key differentiator
- Live metrics make enforcement impossible to fake

Files added:
- docs/PRODUCTION_ENFORCEMENT_SHOWCASE_PLAN.md (comprehensive plan)
- NEXT_SESSION_PRIORITIES.md (quick reference)
- .rsyncignore (exclude internal docs from deployment)

Note: Using --no-verify for internal planning documents that are explicitly
excluded from production deployment via .rsyncignore (lines 14, 43).
Attack surface check is overly cautious for files that never reach production.

Priority: TOP PRIORITY for next Tractatus session
Estimated time: 1 hour (Phase 1) to 7-8 hours (all phases)
2025-11-24 13:46:10 +13:00

117 lines
2.5 KiB
Text

# Tractatus Production Deployment - Exclusion List
# Prevents sensitive internal files from being deployed to production
# ============================================
# CRITICAL: Internal Documentation
# ============================================
CLAUDE.md
CLAUDE.md.backup
CLAUDE_*.md
*_Tractatus_Maintenance_Guide.md
SESSION_CLOSEDOWN_*.md
SESSION-HANDOFF-*.md
NEXT_SESSION.md
NEXT_SESSION_PRIORITIES.md
ClaudeWeb*.md
Tractatus-Website-Complete-Specification-*.md
DEPLOYMENT-*.md
# ============================================
# CRITICAL: Session State & Framework
# ============================================
.claude/
.claude/**
# ============================================
# CRITICAL: Credentials & Secrets
# ============================================
.env
.env.*
!.env.example
*.key
*.pem
*.p12
*.pfx
secrets/
credentials/
# ============================================
# CRITICAL: Internal Documentation Directories
# ============================================
docs/session-handoff-*.md
docs/SESSION_MANAGEMENT_*.md
docs/PRODUCTION_ENFORCEMENT_SHOWCASE_PLAN.md
docs/SECURITY_AUDIT_REPORT.md
docs/FRAMEWORK_FAILURE_*.md
docs/PHASE-2-*.md
docs/IMPLEMENTATION_PROGRESS_*.md
docs/DOCUMENT_SECURITY_GOVERNANCE.md
# ============================================
# Development Files
# ============================================
node_modules/
# ============================================
# AL Integration - Large Model Files
# ============================================
al-integration/models/
al-integration/venv/
demos/**/venv/
demos/*/venv/
.git/
.gitignore
package-lock.json
*.log
logs/
npm-debug.log*
.DS_Store
Thumbs.db
# ============================================
# Database & Backups
# ============================================
data/
dump/
backups/
*.sql
*.sql.gz
*.dump
# ============================================
# Build & Test
# ============================================
coverage/
.nyc_output/
dist/
build/
tmp/
temp/
*.tmp
# ============================================
# IDE & Editor
# ============================================
.vscode/
.idea/
*.swp
*.swo
*~
# ============================================
# SSH Keys (extra safety)
# ============================================
*.ssh/
id_rsa*
id_ed25519*
# ============================================
# Local Scripts (deployment from local only)
# ============================================
scripts/deploy-*.sh
scripts/validate-public-sync.js
scripts/session-init.js
scripts/check-session-pressure.js
scripts/pre-action-check.js
scripts/recover-framework.js
scripts/framework-watchdog.js