From 481e68d32dcc9e6d735e5462feef512ff2f257ce Mon Sep 17 00:00:00 2001 From: kostis30fyllou Date: Wed, 7 Jul 2021 17:47:46 +0300 Subject: [PATCH] Remove credentials from properties. Add some info on Readme --- README.md | 22 ++++++++++++++++++++++ src/main/resources/registry.properties | 4 ++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1a990f3..adbda2a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,24 @@ # dnet-role-management +Dnet Role Management is a service which is communicating with AAI Registry +service providing methods to get users information, assign roles to users or +revoke roles from them. + +# Configuration + +#### Registry Properties + + registry.coid=2 + registry.issuer=https://openaire-dev.aai-dev.grnet.gr/registry/ + registry.user=user + registry.password=pass + registry.version=1.0 + +#### Redis Properties + + redis.host = localhost + redis.port = 6379 + redis.password = + webbapp.front.domain=.di.uoa.gr + + diff --git a/src/main/resources/registry.properties b/src/main/resources/registry.properties index f07ba41..23cd36b 100644 --- a/src/main/resources/registry.properties +++ b/src/main/resources/registry.properties @@ -1,7 +1,7 @@ registry.coid=2 registry.issuer=https://openaire-dev.aai-dev.grnet.gr/registry/ -registry.user=***REMOVED*** -registry.password=***REMOVED*** +registry.user=user +registry.password=pass registry.version=1.0 server.port=8090 redis.host = localhost