Updating Spec-Up-T
Introduction
This guide provides step-by-step instructions to update your Spec-Up-T installation.
Prerequisites
Before proceeding, ensure you have the following tools and knowledge:
- Basic familiarity with Git and npm.
- A text editor (e.g., VS Code or Notepad++).
- Installed Node.js and npm.
- Access to the Spec-Up-T GitHub repository.
Update
Updating your Spec-Up-T installation requires the following steps:
1. Configure GitHub Token
You need a GitHub Personal Access Token for authentication. Instructions how to create a GitHub Personal Access Token.
- Rename
.env.example
to.env
. - Add your token in the
.env
file as follows:GITHUB_TOKEN=<your-token>
If there is a .env
file already, with a token, you can skip this step.
2. Update specs.json
Compare your specs.json
with the boilerplate version. Use the following tool to identify differences. Ensure all entries align with the boilerplate.
npx compare-spec-up-t-specs
3. Set Up Terms
terms-and-definitions-intro.md
- Create a file named
terms-and-definitions-intro.md
in the/specs
directory. - Add an intro text or leave it empty. Ensure this file is referenced in
specs.json
. See the boilerplate.
If there is a terms-and-definitions-intro.md
file in the /specs
directory already you can skip this step.
4. Update
Run the update function:
npm run custom-update
This will run
npm update
(which will update thespec-up-t
package, and other packages)- a custom script.
If this giver errors, then run the following commands:
First update:
npm update
Then run this:
node node_modules/spec-up-t/src/install-from-boilerplate/custom-update.js
and then run this again:
npm run custom-update
Completion
Your Spec-Up-T installation is now up to date. If you encounter any issues, refer to the troubleshooting guide or open an issue in the Spec-Up-T GitHub repository.