- Add comprehensive database migrations (001-024) for schema evolution - Enhance API schema with expanded type definitions and resolvers - Add new middleware: audit logging, rate limiting, MFA enforcement, security, tenant auth - Implement new services: AI optimization, billing, blockchain, compliance, marketplace - Add adapter layer for cloud integrations (Cloudflare, Kubernetes, Proxmox, storage) - Update Crossplane provider with enhanced VM management capabilities - Add comprehensive test suite for API endpoints and services - Update frontend components with improved GraphQL subscriptions and real-time updates - Enhance security configurations and headers (CSP, CORS, etc.) - Update documentation and configuration files - Add new CI/CD workflows and validation scripts - Implement design system improvements and UI enhancements
68 lines
1.1 KiB
Markdown
68 lines
1.1 KiB
Markdown
# SMOM-DBIS-138 Quick Start Guide
|
|
|
|
## 🚀 Quick Start
|
|
|
|
### Step 1: Start VMs
|
|
|
|
```bash
|
|
cd ~/projects/Sankofa
|
|
|
|
# Get startup instructions
|
|
./scripts/start-smom-vms.sh
|
|
|
|
# Or start via Proxmox Web UI:
|
|
# Site 1: https://192.168.11.10:8006
|
|
# Site 2: https://192.168.11.11:8006
|
|
```
|
|
|
|
### Step 2: Wait for VMs to Boot
|
|
|
|
```bash
|
|
# Monitor VM status
|
|
watch -n 10 kubectl get proxmoxvm -A
|
|
```
|
|
|
|
### Step 3: Collect IP Addresses
|
|
|
|
```bash
|
|
# Collect all VM IPs
|
|
./scripts/get-smom-vm-ips.sh
|
|
```
|
|
|
|
### Step 4: Configure Infrastructure
|
|
|
|
```bash
|
|
# Configure Nginx Proxy
|
|
./scripts/configure-nginx-proxy.sh
|
|
|
|
# Configure Cloudflare Tunnel
|
|
./scripts/configure-cloudflare-tunnel.sh
|
|
```
|
|
|
|
### Step 5: Configure Blockchain Network
|
|
|
|
```bash
|
|
# Switch to SMOM-DBIS-138 project
|
|
cd ~/projects/smom-dbis-138
|
|
|
|
# Load VM IPs
|
|
source config/vm-ips.txt
|
|
|
|
# Follow SMOM-DBIS-138 deployment
|
|
make help
|
|
cat README.md
|
|
```
|
|
|
|
---
|
|
|
|
## 📚 Full Documentation
|
|
|
|
- **Complete Guide**: `docs/smom-dbis-138-deployment-complete.md`
|
|
- **Next Steps**: `docs/smom-dbis-138-next-steps.md`
|
|
- **Project Integration**: `docs/smom-dbis-138-project-integration.md`
|
|
|
|
---
|
|
|
|
**Status**: ✅ Ready to Start
|
|
|