This website is built using Docusaurus 2, a modern static website generator.
Here's the website: https://hcp-uw.github.io/hcp-documentation/
$ yarn
$ yarn start
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
$ yarn build
This command generates static content into the build
directory and can be served using any static contents hosting service.
Our docs are deployed through vercel automatically from the vercel_deploy
branch. Just push changes to main
, and then merge main
into vercel_deploy
to deploy the changes.
=======
```bash
git checkout main
git pull
yarn build
git add <files>
git commit -m "message"
git push origin main
git checkout vercel_deploy
git merge main
git push origin vercel_deploy