Getting Started
Getting NuxtStart Updates
How to get updates from NuxtStart
Subscribe to Releases
To get updates from NuxtStart, you can watch for repository releases on GitHub and subscribe to notifications. This way, you'll be informed about new releases, bug fixes, and feature updates.
Updating Codebase
To update your local codebase with the latest changes from the main repository, you can follow these steps:
- Ensure you have added the NuxtStart repository as a remote as mentioned in the setup guide You can verify it by running:
git remote -v # Output should include something like: # --- # nuxtstart https://github.com/nuxtstart/nuxtstart.git (fetch) # nuxtstart https://github.com/nuxtstart/nuxtstart.git (push) - Pull the latest changes from the main repository:
git pull nuxtstart main # Use following command if you get error "fatal: refusing to merge unrelated histories" git pull nuxtstart main --allow-unrelated-histories - Resolve any merge conflicts if they arise, and commit the changes to your local repository. If you ever receive
pnpm-lock.yamlconflicts, follow these steps:- Open
pnpm-lock.yaml - Accept all current changes and save the file
- Run
pnpm installto regenerate the lock file with the latest dependencies. This will ensure that your project is up to date with the latest changes from the main repository. - Stage and commit.
- Open
- You'll receive merge commit after successful pull. In merge commit if there's any database schema changes make sure to generate migration via
pnpm run db:generateand apply it viapnpm run db:migrateto keep your local database in sync with the latest codebase. - Review merge commit and verify that everything is working as expected. If you encounter any issues, you can refer to the NuxtStart documentation or seek help in our discord channel.
- Finally, push the merged changes to your repository.

