Onboarding Guide
Get up and running with your development environment.
Prerequisites
- Node.js 18.17 or later
- npm, yarn, or pnpm package manager
- A Convex account (free tier available)
Installation
npm install
Environment Setup
Create a .env.local
file with your Convex deployment URL:
NEXT_PUBLIC_CONVEX_URL=your-convex-url
Development Server
Start the development server with:
npm run dev
This will start both the Next.js development server and the Convex development environment.
Project Structure
app/
- Next.js App Router pages and layoutscomponents/
- Reusable React componentsconvex/
- Backend functions and schemalib/
- Utility functions and helpers
Next Steps
- Explore the application by navigating through different sections
- Try creating an account and signing in
- Check out the protected application pages
- Review the Server API documentation