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/mainResolve any merge conflicts that arise from your customizations, then commit.
What to watch for
- Schema changes — If the update modifies
lib/db/schema.ts, runnpm run db:generatethennpm 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.examplefor any new variables that were added - Dependencies — Run
npm installafter merging to pick up any new or updated packages