One moment.
One moment.
Note: This is mock/placeholder content for demonstration purposes.
Get your development environment up and running quickly.
Before you begin, ensure you have:
git clone https://github.com/yourorg/yourapp.git cd yourapp
pnpm install
This will install all required dependencies across the monorepo.
Copy the example environment file:
cp apps/web/.env.example apps/web/.env.local
Update the following variables:
# Supabase Configuration NEXT_PUBLIC_SUPABASE_URL=http://localhost:54321 NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here # Application NEXT_PUBLIC_SITE_URL=http://localhost:3000
Start your local Supabase instance:
pnpm supabase:web:start
This will:
pnpm dev
Your application will be available at:
Now that your app is running:
If port 3000 is already in use:
# Find and kill the process lsof -i :3000 kill -9 <PID>
Try resetting Supabase:
pnpm supabase:web:stop docker system prune -a # Clean Docker pnpm supabase:web:start
Ensure Docker is running and restart Supabase:
docker ps # Check Docker is running pnpm supabase:web:reset