- Added generated index files and report directories to .gitignore to prevent unnecessary tracking of transient files. - Updated README links to reflect new documentation paths for better navigation. - Improved documentation organization by ensuring all links point to the correct locations, enhancing user experience and accessibility.
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
|
|
|