Skip to content
sammsaski edited this page Jan 10, 2023 · 3 revisions

Welcome to the wiki for sammsaski.github.io!

This document is responsible for providing more insight into the technologies, steps, and general principles of working on this website.

Development + Deployment

The steps below outline how to go about developing and deploying different versions of the website. See https://github.com/gitname/react-gh-pages for more information on deployment.

Check out a new branch or use the development branch.

git checkout -b <branch_name>

Make code changes and test them by locally deploying the site.

npm start

Commit and push the code changes once they are working as desired.

git add .
git commit -m "<message>"
git push

Verify the code changes with a pull request and merge into main.

Create a new tag with the updated codebase.

Deploy the latest version of code.

npm run deploy