From 0cd53e9b1621c1e95f6b9c39819673784c7d5109 Mon Sep 17 00:00:00 2001 From: Oleksii Date: Thu, 19 Oct 2023 09:52:21 +0300 Subject: [PATCH 1/2] Draft --- docs/explore-stack/use-case-backend.md | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/docs/explore-stack/use-case-backend.md b/docs/explore-stack/use-case-backend.md index 34742c5..7b20e72 100644 --- a/docs/explore-stack/use-case-backend.md +++ b/docs/explore-stack/use-case-backend.md @@ -1,13 +1,22 @@ # Use Case Backend -Within the core GovStack Initiative, "reference use cases" are used to provide context and and showcase the specific application of the various GovStack Building Blocks. These use cases are considered to be part of GovStack and are versioned and released alongside the Building Block Specifications when a given GovStack release occurs. +The Use Case Backend is an application which follows the business logic and orchestrates the API calls... -[Govstack Use Case Documentation](https://govstack.gitbook.io/use-cases/) +## Build Assets -## Unconditional Social Cash Transfer +| Name | Type | Note | +|-----------------|-----------|------| +| Spring Boot | Framework | | +| Spring Security | Framework | | +| Database | H2 | Embedded in-memory databases | -This use case profiles specifically the digital integration steps within the delivery journey of a generalized unconditional social cash transfer service. Unconditional cash transfers are cash payments provided to financially disadvantaged or vulnerable people or households without requiring anything in return (i.e. without conditionality). +## Use Case Implementations +### USCT Use Case -[Live demo](https://usct.dev.sandbox-playground.com/driver-poc/) +An implementation of a Use Case Backend application can be found in the following GitHub Repository: -More details in the [repository](https://github.com/GovStackWorkingGroup/sandbox-usecase-usct-backend/blob/main/docs/main.md). +https://github.com/GovStackWorkingGroup/sandbox-usecase-usct-backend/blob/main/docs/main.md + +## Conceptual Decisions + +More information about decision you can find in the [repository](https://github.com/GovStackWorkingGroup/sandbox-usecase-usct-backend/blob/main/docs/main.md). From 6dfcda7043fef1c2121dd3bb1387a41696f7499b Mon Sep 17 00:00:00 2001 From: Oleksii Date: Thu, 19 Oct 2023 10:14:55 +0300 Subject: [PATCH 2/2] Update table. --- docs/explore-stack/use-case-backend.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/explore-stack/use-case-backend.md b/docs/explore-stack/use-case-backend.md index 7b20e72..1ca1348 100644 --- a/docs/explore-stack/use-case-backend.md +++ b/docs/explore-stack/use-case-backend.md @@ -1,14 +1,16 @@ # Use Case Backend -The Use Case Backend is an application which follows the business logic and orchestrates the API calls... +The Use Case Backend is an application which follows the business logic and orchestrates the API calls. ## Build Assets -| Name | Type | Note | -|-----------------|-----------|------| -| Spring Boot | Framework | | -| Spring Security | Framework | | -| Database | H2 | Embedded in-memory databases | +| Name | Type | Note | +|-----------------|-----------|------------------------------| +| Spring Boot | Framework | Main framework. | +| Spring Security | Framework | Access-control framework. | +| Database | H2 | Embedded in-memory databases | + +Full list of assets located in the [build.gradle](https://github.com/GovStackWorkingGroup/sandbox-usecase-usct-backend/blob/main/build.gradle) file. ## Use Case Implementations ### USCT Use Case