Add full monorepo: virtual-banker, backend, frontend, docs, scripts, deployment

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
defiQUG
2026-02-10 11:32:49 -08:00
parent aafcd913c2
commit 88bc76da91
815 changed files with 125522 additions and 264 deletions

45
README_EXECUTE.md Normal file
View File

@@ -0,0 +1,45 @@
# Execute Deployment - Correct Command
## ❌ Wrong Location
You're currently in: `~/projects/proxmox/`
The script is in: `~/projects/proxmox/explorer-monorepo/`
## ✅ Correct Command
**Option 1: Navigate first**
```bash
cd ~/projects/proxmox/explorer-monorepo
bash EXECUTE_DEPLOYMENT.sh
```
**Option 2: Run from current location**
```bash
cd ~/projects/proxmox/explorer-monorepo && bash EXECUTE_DEPLOYMENT.sh
```
**Option 3: Use quick run script (from anywhere)**
```bash
bash ~/projects/proxmox/explorer-monorepo/QUICK_RUN.sh
```
## What the Script Does
1. Tests database connection
2. Checks for existing tables
3. Runs migration if needed
4. Stops existing server
5. Starts server with database
6. Tests all endpoints
7. Shows status summary
## Expected Results
- ✅ Database connected
- ✅ Migration complete
- ✅ Server running on port 8080
- ✅ All endpoints operational
**Run the command from the explorer-monorepo directory!**