Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 954 Bytes

File metadata and controls

36 lines (25 loc) · 954 Bytes

Deployment Documentation

Production deployment guides for ComponentForge.

Contents

Quick Deployment

Development

# 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

Production (Recommended)

  • 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.