Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/googleinterns/step190-2020
gVote is a voter information platform that walks users through steps in the U.S. voting procedure by helping users register to vote, listing relevant upcoming elections, and providing ballot information and nearby polling sites, so that users are prepared to vote on election day.
https://github.com/googleinterns/step190-2020
election vote
Last synced: 18 days ago
JSON representation
gVote is a voter information platform that walks users through steps in the U.S. voting procedure by helping users register to vote, listing relevant upcoming elections, and providing ballot information and nearby polling sites, so that users are prepared to vote on election day.
- Host: GitHub
- URL: https://github.com/googleinterns/step190-2020
- Owner: googleinterns
- Created: 2020-06-19T16:37:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-20T21:51:08.000Z (over 2 years ago)
- Last Synced: 2023-03-09T06:10:50.764Z (almost 2 years ago)
- Topics: election, vote
- Language: Java
- Homepage: https://contrib-geo-step-2020.appspot.com
- Size: 45.2 MB
- Stars: 6
- Watchers: 4
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gVote
gVote is a voter information platform that walks users through steps in the U.S. voting procedure by:
1. Helping users register to vote.
2. Listing the relevant elections coming up.
3. Providing details about each election, including ballot information and nearby polling sites, so users are ready to vote on election day.You can find the deployed site at [contrib-geo-step-2020.appspot.com](https://contrib-geo-step-2020.appspot.com/).
This repository is Google STEP 2020 Pod 190's capstone project. To run this app locally, you must be authenticated on the Google Cloud Platform.
**Authors:** Gianluca Delgado ([@gianelgado12]), Casey Price ([@casprice]), Anooshree Sengupta ([@anooshrees])
**Reviewers:** Roger Lau ([@rogerlau]), Julian Yang ([@julian-yang])
[@gianelgado12]: https://github.com/gianelgado12
[@casprice]: https://github.com/casprice
[@anooshrees]: https://github.com/anooshrees
[@rogerlau]: https://github.com/rogerlau
[@julian-yang]: https://github.com/julian-yang## Usage Instructions
### Set up the project
```
git clone https://github.com/googleinterns/step190-2020.git
```
This project requires JDK 8 and Apache Maven to be installed in your environment.### Run a local server
```
mvn package appengine:run
```
**Note:** This command must be run in the root directory of the repository, because uses the `pom.xml` file to track dependencies and plugins.The first time you run this command will take longer to build than usual because Maven is installing the project's dependencies.
### Insert election data in your local Datastore
```
curl -X PUT localhost:8080/election
```### Stop the local server
Ctrl+C or Cmd+C.### Run the tests
```
mvn verify
```
This command runs both unit tests and integration tests.### Clean the files and directories generated by Maven
```
mvn clean
```