Creator
Codebase

Cloning Repository

How to clone Creator and set up your own repository.

Clone the repository

git clone <your-repo-url> my-app
cd my-app

Install dependencies

npm install

Remove the existing git history

If you want a clean start without the boilerplate's commit history:

rm -rf .git
git init
git add .
git commit -m "Initial commit"

Push to your own repository

Create a new repository on GitHub (or your preferred host), then push:

git remote add origin https://github.com/your-username/your-repo.git
git push -u origin main

Next steps

Follow the Quickstart guide to set up environment variables, run migrations, and start the dev server.

On this page

We use cookies to ensure you get the best experience on our website. For more information on how we use cookies, please see our cookie policy.