Built with React | Styled Components | Parcel
- Clone the repo to your machine.
- Make sure you have yarn installed. This project uses it instead of npm.
- Install package dependencies using by running
yarn
in the project. - Start up the dev server @ localhost:1234 by running
yarn dev
.
The website is configured to automatically deploy the contents of the master
branch on GitHub. So all you have to do is merge your changes to master
, push, and wait.
Some additional notes on this:
- You can monitor the deployment or adjust environmnent vars on the TravisCI dashboard.
- The code defining how deployment is done can be found in
.travis.yml
anddeploy.sh
.- It's not too complex, TravisCI simply builds the project using
yarn build
, then sends it to S3 using theaws
CLI
- It's not too complex, TravisCI simply builds the project using