A data dashboard for the DECC network, based on the OpenGHG data dashboard.
To run the app locally please make sure you have node installed. Then you can clone this repo and run
$ npm install
This will install all of the dependencies required to run the app. You can then start the app using
$ npm start
You should then be able to access the app at http://localhost:3000.
##s Testing
If you'd like to make changes and/or add components to this project please make sure each component is tested. We make use of the React Testing Library to test the application as a user would interact with it. Please refer to their documentation for instructions on how to get started.
You can run the tests using
$ npm run test
Code quality is checked using ESLint, this can be run using
$ npm run lint