Hosted on github pages at willrossen.com
- JavaScript
- React
- Tailwind
- The main React project is located on branch
main - The deployed static build files are located on branch
gh-pages - To deploy updates:
- Confirm
package.jsonhas been updated with:"homepage": "https://www.willrossen.com/" ,at the top level- in existing
scriptsadd:"scripts": { //... "predeploy": "npm run build", "deploy": "gh-pages -d build" }
- run
npm run deploy- creates new build
- pushes build to
gh-pagesbranch
- Update
Pagessettings for the repo- navigate to
Settings - navigate to
Pages - set and save
Custom Domaintowillrossen.com- every time you deploy, github resets the domain to
https://wor101.github.io/personal-site/ - For now, the only solution is to manually reset the
Custom Domaineach time
- every time you deploy, github resets the domain to
- navigate to
- remember to add, commit, and push any changes to branch
main
- Confirm