https://github.com/edwinhere/grant-disbursement
RESTful API that would help your team decide on groups of people who are eligible for various upcoming government grants.
https://github.com/edwinhere/grant-disbursement
Last synced: 10 months ago
JSON representation
RESTful API that would help your team decide on groups of people who are eligible for various upcoming government grants.
- Host: GitHub
- URL: https://github.com/edwinhere/grant-disbursement
- Owner: edwinhere
- Created: 2020-05-17T03:54:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-19T15:26:34.000Z (about 6 years ago)
- Last Synced: 2025-01-08T02:36:31.318Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Government Grant Disbursement API
RESTful API that would help your team decide on groups of people who are eligible for various upcoming government grants.
# Run
You can run using Docker Hub Repository Images, or Docker Images you build locally or using Java Spring Boot Run (needs JDK 14 and Maven)
## Using Docker Hub Repository Image (Recommended)
```
docker run -p 8080:8080 -t edwinhere/grant-disbursement
```
## Using Docker Images Build Locally
```
docker build -t edwinhere/grant-disbursement .
docker run -p 8080:8080 -t edwinhere/grant-disbursement
```
## Using Java Spring Boot Run
**Prerequisites**: JDK 14 and Maven
```
mvn spring-boot:run
```
## Run Tests
```
mvn test
```