- Clone the remote repo with
git clone [email protected]:tempertemper/www.tempertemper.net.git
- Ensure you are on the correct version of node
- Run
npm install
(ornpm i
) in the project root to install the node packages.
Run npm start
in the project root to spin up the development environment.
Run npm update
in the project root to update packages.
This repository uses GitHub Flow.
- Update the
.changelog
file with details of what has been added/changed/fixed/removed - Bump the version number accordingly:
- For a major:
npm run bump:major
- For a minor:
npm run bump:minor
- For a patch:
npm run bump:patch
- For a major:
- Push the changes to the remote
- Raise a PR (Pull Request) on the remote
- Once all tests have passed, merge the PR; this will trigger a deployment to www.tempertemper.net and automatically tag the merge commit with the version number
- Run
git switch main && git pull -p && git branch -d name-of-branch
locally