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-appInstall dependencies
npm installRemove 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 mainNext steps
Follow the Quickstart guide to set up environment variables, run migrations, and start the dev server.