Development
Guides for working on the Envara codebase.
Pages
Getting Started
Environment setup, dependencies, and running the app locally.
Conventions
Code style, file naming, component patterns, and commit messages.
Deployment
How to ship — preview deployments, staging, and production.
Quick Start
# Clone
git clone git@github.com:futuresavvy/envara.git
cd envara
# Install
pnpm install
# Environment
cp .env.example .env.local
# Fill in: DATABASE_URL, CLERK_*, ANTHROPIC_API_KEY, STRIPE_*, RESEND_*
# Database
pnpm db:push
# Run
pnpm dev