usnistgov / pv2

Present Value of PhotoVoltaics (PV2) is an app that allows homeowners to determine a complete cost of ownership for residential rooftop solar PV systems.
Other
0 stars 1 forks source link

PV2

PV2 is a web application that calculates the cost of ownership of a residential solar system. It utilizes the E3 API for running the economic analysis.

Running the app

Clone the repository:

$ git clone https://github.com/usnistgov/pv2.git
$ cd pv2

Run locally for development (will not autofill some data)

Build and run with yarn:

$ cd frontend/
$ yarn install
$ yarn run dev

Or build and run with npm:

$ cd frontend/
$ npm install
$ npm run dev

Run production build on docker

Ensure docker and docker-compose are installed.

Build and run with docker-compose:

$ docker-compose build
$ docker-compose up