This repository contains all of the source code for incontrolofeffects.com.
The static site is built using react and bundled using Webpack. To get started locally, make sure that you have node and yarn installed on your machine. Then, clone this repository and work from the dev branch.
git clone https://github.com/InControlofEffects/iceSite
git checkout devInstall the dependencies.
yarn installStart the development server. The site will be active at http://localhost:8000.
yarn startMake the required changes or implement new features. When you are ready, build the website and start the production server. The site will be available at http://localhost:9000.
yarn build
yarn startIncrement the version number accordingly and push to the dev branch.
yarn version # update using the appropriate schema
git add .
git commit -m "my cool commit message"
git push origin dev