How to Start a New Project
When you first clone this boilerplate, you need to customize it for your own application. Instead of doing this manually, use the built-in initialization script.
# 1. Install all dependencies
pnpm install
# 2. Run the interactive initialization script
pnpm run init-projectThis script will ask for your app's name, description, and URL, and will automatically update package.json, src/lib/constants.ts, and the README.
Starting the Dev Server
# Copy environment variables
cp .env.example .env.local
# Start the development server on localhost:3000
pnpm dev