merge: chore/cleanup-remove-bloat-and-secrets into main

This commit is contained in:
Crypto Rug Munch 2026-07-02 01:24:22 +07:00
commit bde2f3a97d
1173 changed files with 437609 additions and 0 deletions

52
safe_deploy.sh Normal file
View file

@ -0,0 +1,52 @@
#!/bin/bash
# Safe RAG Deploy — NEVER deploys main.py
# Deploys only RAG app files that are safe to overwrite.
# Usage: cd ~/rmi/backend && bash safe_deploy.sh
VPS="root@152.53.80.39"
VPS_APP="/root/backend/app"
FILES=(
# Core RAG (single source of truth)
"app/crypto_embeddings.py"
"app/ann_index.py"
"app/rag_service.py"
# Ingestion
"app/rag_chunking.py"
"app/rag_historical.py"
"app/github_rag_feeder.py"
# Evaluation & Feedback
"app/rag_evaluation.py"
"app/rag_feedback.py"
# Storage & Backup
"app/rag_permanence.py"
"app/rag_gcloud_backup.py"
# Agentic & Firehose
"app/rag_agentic.py"
"app/rag_firehose.py"
# Endpoints (imported by main.py)
"app/rag_endpoints.py"
# Observability & Metrics
"app/rag_observability.py"
"app/rag_metrics_api.py"
# Databus RAG
"app/databus/rag_ingestion.py"
"app/databus/rag_provider.py"
)
echo "=== Safe RAG Deploy ==="
echo "Deploying ${#FILES[@]} files (skipping main.py)"
echo ""
for f in "${FILES[@]}"; do
if [ -f "$f" ]; then
echo " $f → VPS"
scp "$f" "$VPS:$VPS_APP/${f#app/}" 2>/dev/null
else
echo " SKIP $f (not found)"
fi
done
echo ""
echo "Deploy complete. Restart backend:"
echo " ssh $VPS 'docker restart rmi-backend'"