# Root Team collaboration platform. ## Quick Start ```bash # Install npm install # Set up environment cp .env.example .env # Fill in your Supabase credentials in .env # Run migrations in Supabase Dashboard > SQL Editor # Copy & run each file in supabase/migrations/ in order (001, 002, 003...) # Start dev server npm run dev ``` Open http://localhost:5173 ## Docker ```bash # Production docker-compose up app # Development docker-compose up dev ```