Docs: meeting notes and implementation plan from team call
parent
87da0d19b3
commit
db0f693a22
|
|
@ -0,0 +1,115 @@
|
||||||
|
# GammaDesk Implementation Plan
|
||||||
|
|
||||||
|
## Phase 1: Database & Infrastructure Foundation (PRIORITY)
|
||||||
|
|
||||||
|
### 1.1 PostgreSQL Migration
|
||||||
|
- [ ] Provision PostgreSQL droplet on DigitalOcean (2vCPU/2GB)
|
||||||
|
- [ ] Create managed PostgreSQL schema from current SQLite schema
|
||||||
|
- [ ] Update drizzle-orm from better-sqlite3 to postgres adapter
|
||||||
|
- [ ] Migrate existing data.db to PostgreSQL
|
||||||
|
- [ ] Update connection strings and environment variables
|
||||||
|
- [ ] Test all auth + market data endpoints
|
||||||
|
|
||||||
|
### 1.2 Dockerize Application
|
||||||
|
- [ ] Create Dockerfile for Node.js app
|
||||||
|
- [ ] Create docker-compose.yml (app + postgres + nginx)
|
||||||
|
- [ ] Test local docker-compose workflow
|
||||||
|
- [ ] Deploy to production droplet
|
||||||
|
|
||||||
|
### 1.3 Production Environment Setup
|
||||||
|
- [ ] Setup .env.production with secure secrets
|
||||||
|
- [ ] Configure nginx SSL properly (certbot renew cron)
|
||||||
|
- [ ] Setup health checks and monitoring
|
||||||
|
|
||||||
|
## Phase 2: Authentication Enhancement
|
||||||
|
|
||||||
|
### 2.1 OAuth Integration
|
||||||
|
- [ ] Setup Google OAuth credentials (Google Cloud Console)
|
||||||
|
- [ ] Setup Apple OAuth credentials (Apple Developer)
|
||||||
|
- [ ] Setup X.com (Twitter) OAuth credentials
|
||||||
|
- [ ] Implement Passport.js strategies for each provider
|
||||||
|
- [ ] Add OAuth callback routes
|
||||||
|
- [ ] Update login page with OAuth buttons
|
||||||
|
- [ ] Link existing email accounts to OAuth providers
|
||||||
|
|
||||||
|
### 2.2 Email Service (Brevo)
|
||||||
|
- [ ] Wait for Eli to setup Brevo account ($15/mo)
|
||||||
|
- [ ] Configure SMTP credentials in .env
|
||||||
|
- [ ] Implement password reset flow
|
||||||
|
- [ ] Implement email verification on signup
|
||||||
|
- [ ] Setup Brevo templates (welcome, reset, verification)
|
||||||
|
|
||||||
|
## Phase 3: Feature Development
|
||||||
|
|
||||||
|
### 3.1 GEX ETF-to-Futures Toggle
|
||||||
|
- [ ] Research SPY→ES, QQQ→NQ conversion factors
|
||||||
|
- [ ] Implement conversion logic in server/marketData.ts
|
||||||
|
- [ ] Create toggle component in UI
|
||||||
|
- [ ] Update charts to reflect converted levels
|
||||||
|
- [ ] Test with real ORATS data (when available)
|
||||||
|
|
||||||
|
### 3.2 Vertical GEX Visualization
|
||||||
|
- [ ] Redesign GEX chart to show vertical levels on price chart
|
||||||
|
- [ ] Implement Tanuki-style overlay
|
||||||
|
- [ ] Add call wall / put wall markers
|
||||||
|
- [ ] Add HVL (High Volume Level) markers
|
||||||
|
|
||||||
|
### 3.3 ORATS API Integration
|
||||||
|
- [ ] Wait for Eli to provide API credentials
|
||||||
|
- [ ] Update server/oratsClient.ts with live endpoint
|
||||||
|
- [ ] Implement rate limiting and caching
|
||||||
|
- [ ] Add real-time WebSocket feeds (if available)
|
||||||
|
- [ ] Update all mock data endpoints
|
||||||
|
|
||||||
|
## Phase 4: Scaling & DevOps
|
||||||
|
|
||||||
|
### 4.1 Infrastructure Scaling
|
||||||
|
- [ ] Provision additional VPS instances on DigitalOcean
|
||||||
|
- [ ] Setup load balancer (HAProxy or DO Load Balancer)
|
||||||
|
- [ ] Configure database replication (N+1 pattern)
|
||||||
|
- [ ] Implement round-robin DNS or load balancer routing
|
||||||
|
|
||||||
|
### 4.2 Kubernetes & Terraform
|
||||||
|
- [ ] Setup Terraform project for DO infrastructure
|
||||||
|
- [ ] Define resources: droplets, databases, load balancers, DNS
|
||||||
|
- [ ] Create Kubernetes manifests
|
||||||
|
- [ ] Implement auto-scaling policies
|
||||||
|
- [ ] Setup GitLab CI/CD pipeline
|
||||||
|
- [ ] Configure deployment strategies (blue-green, canary)
|
||||||
|
|
||||||
|
## Phase 5: Polish & Launch
|
||||||
|
|
||||||
|
### 5.1 Security Audit
|
||||||
|
- [ ] Review all API endpoints for security
|
||||||
|
- [ ] Implement rate limiting
|
||||||
|
- [ ] Setup HTTPS everywhere
|
||||||
|
- [ ] Implement CSRF protection
|
||||||
|
- [ ] Audit CORS policies
|
||||||
|
|
||||||
|
### 5.2 Performance
|
||||||
|
- [ ] Implement CDN for static assets
|
||||||
|
- [ ] Setup database connection pooling
|
||||||
|
- [ ] Implement response caching
|
||||||
|
- [ ] Optimize bundle sizes
|
||||||
|
- [ ] Lighthouse audit
|
||||||
|
|
||||||
|
### 5.3 Monitoring
|
||||||
|
- [ ] Setup error tracking (Sentry)
|
||||||
|
- [ ] Implement uptime monitoring
|
||||||
|
- [ ] Configure log aggregation
|
||||||
|
- [ ] Setup alerting (Discord webhook)
|
||||||
|
|
||||||
|
## Current Blockers
|
||||||
|
|
||||||
|
| Blocker | Owner | Status |
|
||||||
|
|---------|-------|--------|
|
||||||
|
| ORATS API purchase (3D Secure bank error) | Eli | 🔴 Blocked |
|
||||||
|
| Tanuki Trades credentials | Eli → Vaval | 🔴 Blocked |
|
||||||
|
| Brevo account signup | Eli | 🔴 Blocked |
|
||||||
|
| Design files from cyberpunk render | Eli | 🔴 Blocked |
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
- Phase 2.2 depends on Eli setting up Brevo
|
||||||
|
- Phase 3.3 depends on Eli providing ORATS API credentials
|
||||||
|
- Phase 3.1/3.2 can proceed independently with mock data
|
||||||
|
- Phase 4 can begin in parallel with Phase 2
|
||||||
|
|
@ -0,0 +1,43 @@
|
||||||
|
# GammaDesk Team Call - Meeting Notes
|
||||||
|
|
||||||
|
**Attendees:** Chuck ("your future"), Eli (Elijahwun Whitehead), Vaval (Derick Vaval)
|
||||||
|
**Date:** 2026-05-21
|
||||||
|
|
||||||
|
## Action Items for Chuck ("your future")
|
||||||
|
|
||||||
|
| # | Task | Status | Details |
|
||||||
|
|---|------|--------|---------|
|
||||||
|
| 1 | Migrate Database to PostgreSQL | 🔴 Blocked | Need N+1 sharding, round robin load balancing |
|
||||||
|
| 2 | Setup OAuth (Google, Apple, X.com) | 🟡 Pending | Email auth done first, OAuth later for virality |
|
||||||
|
| 3 | Dockerize Application | 🟡 Pending | Containerize for deployment |
|
||||||
|
| 4 | Setup Kubernetes | 🟡 Pending | Container orchestration |
|
||||||
|
| 5 | Setup Terraform + CI/CD | 🟡 Pending | GitLab pipeline, infrastructure as code |
|
||||||
|
| 6 | Configure Hosting (DO VPS) | 🟢 Done | gammanexus.io on DigitalOcean droplet |
|
||||||
|
| 7 | Setup Brevo SMTP | 🔴 Blocked | Need Eli to pay for $15/mo account (25k emails) |
|
||||||
|
| 8 | GEX ETF-to-Futures Toggle | 🟡 Pending | Toggle between ETF and futures instrument levels |
|
||||||
|
| 9 | Deploy Code to Private Repo | 🟢 Done | GitTea at git.core.isnowglobal.com |
|
||||||
|
| 10 | Implement Vertical GEX on Charts | 🟡 Pending | Swap from horizontal to vertical representation |
|
||||||
|
| 11 | Reverse Engineer Tanuki Trades | 🟡 Pending | Need Tanuki credentials from Eli → Vaval |
|
||||||
|
|
||||||
|
## Key Decisions
|
||||||
|
|
||||||
|
- **MVP First:** Deploy functional testable app → add complex features later
|
||||||
|
- **Email Auth First:** OAuth comes after email authentication is stable
|
||||||
|
- **Brevo for SMTP:** $15/mo, 25k emails, ensures Gmail deliverability
|
||||||
|
- **Vertical GEX:** Map gamma levels vertically on live price charts (Tanuki Trades style)
|
||||||
|
- **ETF to Futures Conversion:** SPY→ES, calculate conversion factor from intraday price action
|
||||||
|
- **Infrastructure Scale:** 6 VMs total (2 DB, 1 GitLab/CI, 2 app, 1 backup)
|
||||||
|
|
||||||
|
## Blocked Items
|
||||||
|
|
||||||
|
1. **ORATS API Key** - Eli's bank 3D Secure error blocking purchase
|
||||||
|
2. **Tanuki Trades Credentials** - Eli needs to share with Vaval
|
||||||
|
3. **Brevo Account** - Eli needs to sign up and pay
|
||||||
|
|
||||||
|
## Current State
|
||||||
|
- Domain: gammanexus.io (DO droplet, nginx, PM2, Let's Encrypt SSL)
|
||||||
|
- Auth: Email/password login system working
|
||||||
|
- Data: Mock ORATS-style data (SPY, QQQ, SPX, AAPL, TSLA, NVDA)
|
||||||
|
- DB: SQLite (better-sqlite3)
|
||||||
|
- Repo: GitTea at git.core.isnowglobal.com/isnowglobal-admin/gammanexus
|
||||||
|
- Theme: Nexus AI style (deep black, neon green, modern typography)
|
||||||
Loading…
Reference in New Issue