Clone the Repository

Clone the Next.js Drizzle 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.

Note: In all examples below, replace <your-project-name> with your project name (or use my-saas as a placeholder).

Cloning the repository

Clone the Next.js Drizzle 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-drizzle-saas-kit-turbo.git <your-project-name>
cd <your-project-name>

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-drizzle-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.

Option 3: GitHub CLI

If you have the GitHub CLI installed:

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

Next: Setup Dependencies →