Releases: ParrySMS/PocketRentalCompany
PocketRentalAPI-V0.6.0
API add the {SKU + period} into orderDeployed and run in the cloud environment.
Swagger: http://demo-company.azurewebsites.net/swagger-ui.html#/
API:
Doc:
Solution design document: https://github.com/ParrySMS/PocketRentalCompany/blob/develop/software%20design%20document.md
API Spec Swagger: http://demo-company.azurewebsites.net/swagger-ui.html#/
Test cases (Unit test): https://github.com/ParrySMS/PocketRentalCompany/tree/develop/pocket-rental-company/src/test/java/com/pocket/retal
Tech introduction doc: https://github.com/ParrySMS/PocketRentalCompany/blob/develop/README.md
PocketRentalAPI-V0.4.0
Deployed and run in the cloud environment.
PocketRentalAPI-V0.5.0
Deployed and run in the cloud environment.
http://demo-company.azurewebsites.net/swagger-ui.html#/
API:
Doc:
Solution design document: https://github.com/ParrySMS/PocketRentalCompany/blob/develop/software%20design%20document.md
API Spec Swagger: http://demo-company.azurewebsites.net/swagger-ui.html#/
Test cases (Unit test): https://github.com/ParrySMS/PocketRentalCompany/tree/develop/pocket-rental-company/src/test/java/com/pocket/retal
Tech introduction doc: https://github.com/ParrySMS/PocketRentalCompany/blob/develop/README.md
PocketRentalAPI-V0.3.0
PocketRentalAPI-V0.2.0
Completed two APIs (including unit testing)
PocketRentalAPI-V0.1.0
Two health check API to show the whole data flow and integration are done.
- health-check
curl -X GET "http://localhost:8080/health-check" -H "accept: */*"
response body:
It's OK. 2021-05-22
- database-check
curl -X GET "http://localhost:8080/database-check" -H "accept: */*"
response body:
{
"status": true,
"message": "success",
"data": [
{
"id": 1,
"frequencyType": "Daily"
},
{
"id": 2,
"frequencyType": "Weekly"
},
{
"id": 3,
"frequencyType": "Monthly"
},
{
"id": 4,
"frequencyType": "Half-Yearly"
},
{
"id": 5,
"frequencyType": "Yearly"
},
{
"id": 6,
"frequencyType": "test"
}
]
}