# 1. Create from template
gh repo create my-project --template devizerio/foundry --clone
cd my-project
# 2. Rename the project
./scripts/rename-project.sh myproject
# 3. Run setup
./scripts/setup.sh
# 4. Configure environment
cp apps/web/.env.example apps/web/.env.local
cp apps/server/.env.example apps/server/.env
# Edit the .env files with your Supabase credentials
# 5. Start development
pnpm dev