fix: Add Railway deployment configs and GitHub workflows

- Add Railway configuration (railway.toml)
- Add GitHub Actions workflows
  - Railway deployment automation
  - Python/Node.js testing
  - Health check monitoring
- Add GitHub templates (CODEOWNERS, PR template)
- Add requirements files if missing
- Standardize deployment across all services

This ensures consistent deployment patterns across the entire
BlackRoad OS infrastructure.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Alexa Louise
2025-12-10 15:35:09 -06:00
parent 5b8f5be59a
commit c00b6ee2a1
30 changed files with 2712 additions and 198 deletions

73
.github/workflows/mass-deploy.yml vendored Normal file
View File

@@ -0,0 +1,73 @@
name: Mass Deploy All Services
on:
workflow_dispatch:
inputs:
confirm:
description: 'Type "DEPLOY ALL" to confirm'
required: true
type: string
category:
description: 'Category to deploy (leave empty for all 238 services)'
required: false
type: choice
options:
- ''
- core
- agents
- api
- infrastructure
- security
- blockchain
- devops
- monitoring
- data
- ecosystem
jobs:
validate:
runs-on: ubuntu-latest
name: Validate Deployment Request
steps:
- name: Check confirmation
run: |
if [ "${{ github.event.inputs.confirm }}" != "DEPLOY ALL" ]; then
echo "❌ Confirmation failed. You must type 'DEPLOY ALL' to proceed."
exit 1
fi
echo "✅ Confirmation verified"
deploy-all:
needs: validate
runs-on: ubuntu-latest
name: Mass Deployment
steps:
- name: Deploy all services
run: |
CATEGORY="${{ github.event.inputs.category }}"
if [ -z "$CATEGORY" ]; then
echo "🚀 Deploying ALL 238 services..."
curl -X POST ${{ secrets.ORCHESTRATOR_URL }}/deploy/all \
-H "Content-Type: application/json"
else
echo "🚀 Deploying $CATEGORY category..."
curl -X POST "${{ secrets.ORCHESTRATOR_URL }}/deploy/all?category=$CATEGORY" \
-H "Content-Type: application/json"
fi
- name: Monitor deployment
run: |
echo "⏳ Waiting for deployments to start..."
sleep 60
echo "📊 Checking deployment status..."
curl ${{ secrets.ORCHESTRATOR_URL }}/status | jq '.'
- name: Summary
run: |
echo "✅ Mass deployment initiated!"
echo "Monitor progress: ${{ secrets.ORCHESTRATOR_URL }}/dashboard"
echo ""
echo "This will take several minutes to complete."
echo "Services will be deployed sequentially to avoid rate limits."