Creator
Codebase

Update Repository

How to pull updates from the Creator boilerplate into your project.

Adding the upstream remote

If you want to pull future updates from the Creator boilerplate, add it as an upstream remote:

git remote add upstream <creator-repo-url>

Pulling updates

Fetch the latest changes and merge them into your branch:

git fetch upstream
git merge upstream/main

Resolve any merge conflicts that arise from your customizations, then commit.

What to watch for

  • Schema changes — If the update modifies lib/db/schema.ts, run npm run db:generate then npm run db:push
  • Config changes — New options may be added to files in config/. Compare with your existing config and add any new fields
  • Environment variables — Check .env.example for any new variables that were added
  • Dependencies — Run npm install after merging to pick up any new or updated packages

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.