Save-A-Watt is a full-stack application designed to help users analyze and track energy usage, promoting efficiency and sustainability.
Follow the instructions below to set up the project locally.
- front-end/ → React + Tailwind-based user interface
- back-end/ → Python Flask backend with APIs
- Navigate to the front-end folder:
cd front-endv2
npm i
npm startPort: 3000 2. Navigate to the back-end folder:
cd back-end
py -m venv .venv
.venv\Scripts\activate
# source .venv/bin/activate (mac/linux)
pip install -r requirements.txt
python3 app.pyPort: 5000