Website for CiviCDR.
This website is build using choo.
master
branch contains pre-compiled version of the code that you will be
working with prior to deploying.
gh-pages
contains the compiled version that you can then access over at the
main site.
To make changes to this repository, please follow these steps:
- Fork this repo.
- Clone your forked version.
- Run
npm install
to make sure you have all the right dependencies. You will need to make sure node and npm are installed on your machine. - Running
npm run start
will start a local version that you can access at localhost:8080. bankai will watch for changes. - Once you're ready, please submit a pull request to this repo.
- Once the PR is rebased and merged, you can deploy back from the
master
branch withnpm run publish
. This command will compile, copy over the assets todist/
and push over togh-pages
so you don't have to.