Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.17 KB

README.md

File metadata and controls

56 lines (36 loc) · 1.17 KB

Next.js Starter Template

This is a starter template for building production-grade applications using Next.js.

Features

  • Linting / Code Style
  • Environment Variables
  • Styles / UI
  • Validation
  • Forms
  • Database
  • Authentication

Tech Stack

TBD

Getting Started

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

Running Locally

First, run the Next.js development server:

pnpm dev

Open http://localhost:3000 with your browser to see the result.

Resources

Deploy on Vercel

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.