aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2019-05-02 17:16:22 +0200
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2019-05-02 17:16:22 +0200
commit0d88e7820307986a782aa6e0eee7032d3b3a0b11 (patch)
tree3fc6818812f3c95f97be98f068a6bea5d84b2069
parentbf6bb598c9f57794d756d4147d3a271386e1473a (diff)
downloadreclaim-oidc-0d88e7820307986a782aa6e0eee7032d3b3a0b11.tar.gz
reclaim-oidc-0d88e7820307986a782aa6e0eee7032d3b3a0b11.zip
update readme
-rw-r--r--README.md29
1 files changed, 28 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0312306..2bedb23 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,28 @@
1# A CLI tool for relying parties to manage their OpenID clients and provider configurations 1# Manage your re:claimID OpenID Connect clients
2
3This tools allows you to manage your OpenID Connect clients in re:claimID.
4
5## Installation
6This tool can be installed using rubygems:
7
8```
9$ gem install reclaim-oidc
10```
11
12## List clients
13To list all registered clients
14
15```
16$ reclaim-oidc --list
17```
18
19## Manage clients:
20Add a new client like this:
21```
22$ reclaim-oidc --add --client-name myclient --redirect-uri https://my.website.tld/authz_cb --description "My Cool Webpage"
23```
24
25Delete a client:
26```
27$ reclaim-oidc --delete --client-name myclient
28```