You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.
Marco La Rosa edited this page May 19, 2020
·
2 revisions
Updating github pages
The github pages site is contained within the folder github-pages
at the root of the repo. This is another VueJS site and it's contained within this folder. So, you make changes
in this folder, build a release and then commit the updated content in docs and push to update the site.
If you want to update the site do the following
// Start up the dev server
> cd github-pages
> npm run serve
// open up http://localhost:8080 in your browser
// update the site content
When you're done and want to build a new version do:
> cd github-pages
> npm run build
This will create a built version of the site in the docs folder which you can then commit
and push in order to update the github pages online version.