This is a starter template for building production-grade applications using Next.js.
- Linting / Code Style
- Environment Variables
- Styles / UI
- Validation
- Forms
- Database
- Authentication
TBD
git clone https://github.com/nicksp/next-starter-template
cd next-starter-template
# Install dependencies
pnpm install
# Create the .env file
cp .env.example .env
# Start the database service
docker compose up
# Migrate the database
pnpm db:migrate
First, run the Next.js development server:
pnpm dev
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.