Production deployment guides for ComponentForge.
- Deployment Overview - Deployment strategies
- Docker Setup - Docker and Docker Compose configuration
- Production Deployment - Production deployment guide
- Security - Security best practices
- Monitoring - Observability and monitoring
# Start all services
docker-compose up -d
# Start backend
cd backend && source venv/bin/activate && uvicorn src.main:app --reload
# Start frontend
cd app && npm run dev- Frontend: Vercel or Netlify
- Backend: Railway, Render, or AWS ECS
- Database: Managed PostgreSQL (AWS RDS, Supabase)
- Vector DB: Qdrant Cloud
- Cache: Redis Cloud or AWS ElastiCache
See Production Deployment for detailed setup instructions.