First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
.env.example
DATABASE_URL="your_database_url_here"
SMTP_HOST="smtp.gmail.com"
SMTP_PORT=587
SMTP_USER="your_email_here"
SMTP_PASS="your_app_password_here"
SMTP_SECURE=false
EMAIL_HOST="smtp.gmail.com"
EMAIL_PORT=587
EMAIL_USER="your_email_here"
EMAIL_PASS="your_app_password_here"
NEXT_PUBLIC_APP_URL="http://localhost:3000"
Open http://localhost:3000 with your browser to see the result.
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.