Purpose and Value
Project Deliverables
Starting App Locally
Deployment
How To Get Started
Purpose: Reduce energy costs through continuous monitoring and baseline comparisons with friends
Value: Provide environmentally conscious consumers a tool to maintain awareness of power consumption
Project Management on AirTable
Assigned Tasks
Due Dates calendar view
Status Kanban
Start by installing front and backend dependencies. While in this directory, run the following commands:
yarn install
cd client
yarn install
cd ..
After both installations complete, run the following command in your terminal:
yarn start
Create a new build from the root directory of your local environment
cd client
yarn build
After Webpack has completed the build, commit the new build files to the repo and push to Heroku.
cd ..
git add .
git commit -m "..."
git push heroku master
If you want to push a different branch to Heroku, change the last command to the following:
### name_of_branch should be the name of the branch you want to push to Heroku.
git push heroku name_of_branch:master


