Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/civicdatalab/hp-fiscal-data-explorer-frontend
Frontend for Himachal Pradesh Fiscal Data explorer for Open Budgets India Platform
https://github.com/civicdatalab/hp-fiscal-data-explorer-frontend
budget contributions-welcome data-visualization hacktoberfest open-budgets open-source opensource reactjs
Last synced: 5 days ago
JSON representation
Frontend for Himachal Pradesh Fiscal Data explorer for Open Budgets India Platform
- Host: GitHub
- URL: https://github.com/civicdatalab/hp-fiscal-data-explorer-frontend
- Owner: CivicDataLab
- License: agpl-3.0
- Created: 2019-10-02T06:27:05.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-21T17:30:05.000Z (8 months ago)
- Last Synced: 2024-04-22T14:57:57.251Z (7 months ago)
- Topics: budget, contributions-welcome, data-visualization, hacktoberfest, open-budgets, open-source, opensource, reactjs
- Language: JavaScript
- Homepage:
- Size: 8.43 MB
- Stars: 0
- Watchers: 5
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
What and Why this repository?
-----------------------------
This repository is to publish the frontend code of Himachal Pradesh Fiscal Data Explorer. Fiscal Data Explorer is a unique tool where citizens can explore both budgets and spending data of Himachal Pradesh in an easy to comprehend and simple to use manner. The project is divided into two repositories hp-fiscal-data-explorer-frontend and hp-fiscal-data-explorer-backend. This repository is the first step towards building more open source fiscal explorers. We selected Himachal Pradesh as our target state because Himachal Pradesh’s finance department uploads the district wise expenditure and revenue data on daily basis on Himkosh of how different stakeholders. The data uploaded is granular and accessible as compared to other states.Relevant Links
--------------
* [Platform link](https://hp.openbudgetsindia.org/#/)
* [Backend repository link](https://github.com/CivicDataLab/hp-fiscal-data-explorer-backend)
* [Wiki](https://github.com/CivicDataLab/hp-fiscal-data-explorer-backend/wiki)Pre-requisites
--------------```
Node.js: 12.6.0,
yarn: 1.19.0 or npm 6.14.2
```Installation
--------------```
# Setup Development environment
$ virtualenv env
$ source env/bin/activate# Clone Repository
$ git clone https://github.com/CivicDataLab/fiscal_data_explorer_frontend.git
$ cd fiscal_data_explorer_frontend# Install all dependencies
$ yarn# Run the server
$ yarn start```
Contributing Guidelines
-----------------------
* Create an issue for a feature/bug.
* Discuss the implementation on the issue itself while attaching the supporting docs there.
* Create a new branch for the issue.
* Code in the branch.
* Open a PR with the very first commit and add a WIP prefix to the title of the PR. e.g. WIP: Fix #1 - Fixed bar chart labels.
* When finished with the implementation, request reviews and remove the WIP prefix.
* If approved, merge the branch. If you are merging from your local CLI(instead of Github UI), make sure your merge commit message contain Fix #1 (for our example, the issue number is 1, replace it with whatever issue number you worked on).
* Go back and check if your issue is closed or not, if not just close it with a reference to the PR which closes it and then go ahead and delete the branch.
## Contributors
- [Abrar Burk](https://github.com/silvergravel)
- [Arpit Arora](https://github.com/TheDataAreClean)
- Arun Sudarsan
- [Gaurav Godhwani](https://github.com/gggodhwani)
- [Preethi G](https://github.com/preethical)
- [Shivam Sharma](https://github.com/shivamragnar)
- [Shreya Agrawal](https://github.com/shreyaagrawal0809)Folder structure
----------------```
.
├── LICENSE
├── README.md
├── build
├── package-lock.json
├── package.json
├── public
├── src
│ ├── App.js
│ ├── App.scss
│ ├── App.test.js
│ ├── actions
│ ├── components
│ ├── content
│ ├── data
│ ├── dictionary
│ ├── imgs
│ ├── index.js
│ ├── index.scss
│ ├── logo.svg
│ ├── reducers
│ ├── scss
│ ├── serviceWorker.js
│ ├── store.js
│ └── utils
└── yarn.lock
```
License
-------
The code is licensed under MIT License while the contents inside the content folder are licensed under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/).