Clone the Repository

Clone the Next.js Prisma SaaS Kit repository to your local machine and set up Git remotes.

The first step is to get the code on your local machine. You can clone the repository using SSH (recommended) or HTTPS.

Cloning the repository

Clone the Next.js Prisma SaaS Kit repository to your local machine.

Option 1: Clone via SSH (Recommended)

If you've set up SSH keys with GitHub, you can clone the repository using the following command:

git clone git@github.com:makerkit/next-prisma-saas-kit-turbo.git <your-project-name>
cd <your-project-name>

Please replace <your-project-name> with the name of your project. If you don't have a project name yet, you can use my-saas as a placeholder.

Benefits of SSH:

  • No need to enter credentials repeatedly
  • More secure than HTTPS
  • Required for some Git operations

Option 2: Clone via HTTPS

If you haven't set up SSH or prefer HTTPS:

git clone https://github.com/makerkit/next-prisma-saas-kit-turbo.git <your-project-name>
cd <your-project-name>

Note: You may need to enter your GitHub username and password (or personal access token) for this method.

Please replace <your-project-name> with the name of your project. If you don't have a project name yet, you can use my-saas as a placeholder.

Option 3: GitHub CLI

If you have the GitHub CLI installed:

gh repo clone makerkit/next-prisma-saas-kit-turbo <your-project-name>
cd <your-project-name>

Please replace <your-project-name> with the name of your project. If you don't have a project name yet, you can use my-saas as a placeholder.


Next: Setup Dependencies →