https://github.com/gematik/poc-dsr-fd
Device security rating PoC - Fachdienst
https://github.com/gematik/poc-dsr-fd
dsr idm poc
Last synced: 4 months ago
JSON representation
Device security rating PoC - Fachdienst
- Host: GitHub
- URL: https://github.com/gematik/poc-dsr-fd
- Owner: gematik
- License: apache-2.0
- Created: 2023-08-24T04:45:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-14T07:06:39.000Z (over 1 year ago)
- Last Synced: 2025-02-21T10:15:19.870Z (8 months ago)
- Topics: dsr, idm, poc
- Language: Java
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# DSR - Fachdienst Backend
> [!NOTE]
> This software is a proof of concept and is not intended for production use. It will not be maintained or receive updates. Concepts from this project will be used in gematik specifications to standardize Zero Trust in Telematics Infrastructure. Developers are encouraged to use the implementation ideas in their own software.This project uses Quarkus, the Supersonic Subatomic Java Framework.
If you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .
## Running the application in dev mode
You can run your application in dev mode that enables live coding using:
```shell script
mvn compile quarkus:dev
```> **_NOTE:_** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.
## Packaging and running the application
The application can be packaged using:
```shell script
mvn package
```
It produces the `quarkus-run.jar` file in the `target/quarkus-app/` directory.The application is now runnable using `java -jar target/quarkus-app/quarkus-run.jar`.
## Health Check - localhost
http://localhost:9000/management/health
http://localhost:9000/management/health/live
http://localhost:9000/management/health/ready## Metrics - localhost
http://localhost:9000/management/metrics## License
Apache License Version 2.0
See [LICENSE](./LICENSE).