Clone the repo and install dependencies
git clone https://github.com/chainpoint/chainpoint-org.git && cd chainpoint-orgInstall dependencies
yarn installThen you can run it by:
yarn devIf you plan on deploying your changes, create and switch to a bugfix or feature branch
git checkout -b feature/<cool-descriptive-branch-name>The website is hosted on Netlify and all updates to the master branch are deployed to the live site immediately. For that reason, we NEVER push directly to the master branch.
First, test the build locally by running
yarn build && yarn startIf it all looks good, push your local feature or bugfix branch to github (never to master) and open a pull request against master. This will create a Deploy Preview on Netlify that the team will deploy when ready.
