Full-stack application for analyzing cost-benefit of property energy efficiency upgrades.
- Backend: FastAPI server for property retrofit analysis
- Frontend: Clean web interface via HTML, CSS and JavaScript
https://devpost.com/software/slao
Green Brick helps homeowners plan energy efficiency upgrades by turning fragmented data (EPC ratings, property values, planning approvals) into actionable insights.
With Green Brick, users can:
- See the potential ROI
- Check feasibility
- Measure environmental feedback
- Explore nearby examples
- Navigate to backend directory:
cd backend- Create and activate virtual environment:
# Create venv
python3 -m venv venv
# Activate
source venv/bin/activate- Install dependencies:
pip install -r ../requirements.txt- Run the server:
python main.pyBackend will be running at http://localhost:8000
- Open a new terminal and navigate to frontend:
cd frontend- Start a simple HTTP server:
python -m http.server 8080- Open your browser to
http://localhost:8080