Skip to content

Latest commit

 

History

History
75 lines (52 loc) · 1.69 KB

README.md

File metadata and controls

75 lines (52 loc) · 1.69 KB

StartKit

A sane starting point for Next.js projects.

Features

Starting a new project with StartKit

  1. Clone this repo to your desired path:

    git clone git@github.com:startkit-dev/startkit-next.git my-new-project
  2. Rename the project:

    ./bin/rename
  3. Update your git remote to point to StartKit as upstream

    git remote rename origin upstream

    In the future, you'll be able to pull in the latest StartKit changes without missing a beat by running:

    git fetch upstream
    git pull upstream/main

Getting Started

pnpm run setup

Running the server

pnpm run dev

The app will be running at http://localhost:3000.

Naming the project

The StartKit name is used throughout the project, you should find and replace the following strings with your project name:

  • StartKit
  • startkit
  • start_kit
  • START_KIT

A helper script has been included to make this easier:

./bin/rename