For the YWebCA.
To prepare the site for development, we just need to install node modules:
npm install
Then to start the build pipeline and run the server:
# starts the app in the browser with browsersync
npm start
- Create a branch off of master
- Commit your changes, push your branch, and open a PR against master
- Once your changes have been merged to master, run the deploy script:
npm run deploy
This will compile your changes to static files, and push them to the gh-pages branch (which is where the site is served from). Once that completes, your changes should be live!