Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ozdemir0ozdemir/nirobank
Banking App - Java - Spring Boot - Microservice
https://github.com/ozdemir0ozdemir/nirobank
auth authentication-service authroization banking gradle java junit5 microservice mockserver spring spring-boot spring-boot-3 testcontainers
Last synced: about 2 months ago
JSON representation
Banking App - Java - Spring Boot - Microservice
- Host: GitHub
- URL: https://github.com/ozdemir0ozdemir/nirobank
- Owner: ozdemir0ozdemir
- Created: 2024-11-28T22:30:38.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-20T13:01:45.000Z (about 2 months ago)
- Last Synced: 2024-12-22T13:15:34.759Z (about 2 months ago)
- Topics: auth, authentication-service, authroization, banking, gradle, java, junit5, microservice, mockserver, spring, spring-boot, spring-boot-3, testcontainers
- Language: Java
- Homepage: https://github.com/ozdemir0ozdemir/NiroBank
- Size: 324 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Info
**auth-service** manages **user-service** and **token-service** via their own
feign clients (modules: **user-client**, **token-client**)### RSA Cert generation using openssl (Available on both Windows and GNU/Linux)
- openssl genrsa -out keypair.pem 2048
- openssl rsa -in keypair.pem -pubout -out public.pem
- openssl pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in keypair.pem -out private.pem---