From 0a88483409c93425b6a31aae8932a40c36c5cea0 Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Thu, 14 Jan 2021 16:36:59 +0100 Subject: [PATCH] chore: rename the docs directory Signed-off-by: Mark Sagi-Kazar --- README.md | 4 ++-- {Documentation => docs}/README.md | 0 {Documentation => docs}/img/caution.png | Bin {Documentation => docs}/img/dex-backend-flow.png | Bin {Documentation => docs}/img/dex-flow.png | Bin {Documentation => docs}/logos/dex-glyph-bw.png | Bin {Documentation => docs}/logos/dex-glyph-bw.svg | 0 {Documentation => docs}/logos/dex-glyph-color.png | Bin {Documentation => docs}/logos/dex-glyph-color.svg | 0 {Documentation => docs}/logos/dex-glyph-white.png | Bin {Documentation => docs}/logos/dex-glyph-white.svg | 0 .../logos/dex-horizontal-color.png | Bin .../logos/dex-horizontal-color.svg | 0 .../logos/dex-horizontal-white.png | Bin .../logos/dex-horizontal-white.svg | 0 examples/config-dev.yaml | 2 +- examples/grpc-client/README.md | 3 +-- 17 files changed, 4 insertions(+), 5 deletions(-) rename {Documentation => docs}/README.md (100%) rename {Documentation => docs}/img/caution.png (100%) rename {Documentation => docs}/img/dex-backend-flow.png (100%) rename {Documentation => docs}/img/dex-flow.png (100%) rename {Documentation => docs}/logos/dex-glyph-bw.png (100%) rename {Documentation => docs}/logos/dex-glyph-bw.svg (100%) rename {Documentation => docs}/logos/dex-glyph-color.png (100%) rename {Documentation => docs}/logos/dex-glyph-color.svg (100%) rename {Documentation => docs}/logos/dex-glyph-white.png (100%) rename {Documentation => docs}/logos/dex-glyph-white.svg (100%) rename {Documentation => docs}/logos/dex-horizontal-color.png (100%) rename {Documentation => docs}/logos/dex-horizontal-color.svg (100%) rename {Documentation => docs}/logos/dex-horizontal-white.png (100%) rename {Documentation => docs}/logos/dex-horizontal-white.svg (100%) diff --git a/README.md b/README.md index fe0b09c9..ad7a9605 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square)](https://pkg.go.dev/mod/github.com/dexidp/dex) [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod&style=flat-square)](https://gitpod.io/#https://github.com/dexidp/dex) -![logo](Documentation/logos/dex-horizontal-color.png) +![logo](docs/logos/dex-horizontal-color.png) Dex is an identity service that uses [OpenID Connect][openid-connect] to drive authentication for other apps. @@ -56,7 +56,7 @@ More docs for running dex as a Kubernetes authenticator can be found [here](http When a user logs in through dex, the user's identity is usually stored in another user-management system: a LDAP directory, a GitHub org, etc. Dex acts as a shim between a client app and the upstream identity provider. The client only needs to understand OpenID Connect to query dex, while dex implements an array of protocols for querying other user-management systems. -![](Documentation/img/dex-flow.png) +![](docs/img/dex-flow.png) A "connector" is a strategy used by dex for authenticating a user against another identity provider. Dex implements connectors that target specific platforms such as GitHub, LinkedIn, and Microsoft as well as established protocols like LDAP and SAML. diff --git a/Documentation/README.md b/docs/README.md similarity index 100% rename from Documentation/README.md rename to docs/README.md diff --git a/Documentation/img/caution.png b/docs/img/caution.png similarity index 100% rename from Documentation/img/caution.png rename to docs/img/caution.png diff --git a/Documentation/img/dex-backend-flow.png b/docs/img/dex-backend-flow.png similarity index 100% rename from Documentation/img/dex-backend-flow.png rename to docs/img/dex-backend-flow.png diff --git a/Documentation/img/dex-flow.png b/docs/img/dex-flow.png similarity index 100% rename from Documentation/img/dex-flow.png rename to docs/img/dex-flow.png diff --git a/Documentation/logos/dex-glyph-bw.png b/docs/logos/dex-glyph-bw.png similarity index 100% rename from Documentation/logos/dex-glyph-bw.png rename to docs/logos/dex-glyph-bw.png diff --git a/Documentation/logos/dex-glyph-bw.svg b/docs/logos/dex-glyph-bw.svg similarity index 100% rename from Documentation/logos/dex-glyph-bw.svg rename to docs/logos/dex-glyph-bw.svg diff --git a/Documentation/logos/dex-glyph-color.png b/docs/logos/dex-glyph-color.png similarity index 100% rename from Documentation/logos/dex-glyph-color.png rename to docs/logos/dex-glyph-color.png diff --git a/Documentation/logos/dex-glyph-color.svg b/docs/logos/dex-glyph-color.svg similarity index 100% rename from Documentation/logos/dex-glyph-color.svg rename to docs/logos/dex-glyph-color.svg diff --git a/Documentation/logos/dex-glyph-white.png b/docs/logos/dex-glyph-white.png similarity index 100% rename from Documentation/logos/dex-glyph-white.png rename to docs/logos/dex-glyph-white.png diff --git a/Documentation/logos/dex-glyph-white.svg b/docs/logos/dex-glyph-white.svg similarity index 100% rename from Documentation/logos/dex-glyph-white.svg rename to docs/logos/dex-glyph-white.svg diff --git a/Documentation/logos/dex-horizontal-color.png b/docs/logos/dex-horizontal-color.png similarity index 100% rename from Documentation/logos/dex-horizontal-color.png rename to docs/logos/dex-horizontal-color.png diff --git a/Documentation/logos/dex-horizontal-color.svg b/docs/logos/dex-horizontal-color.svg similarity index 100% rename from Documentation/logos/dex-horizontal-color.svg rename to docs/logos/dex-horizontal-color.svg diff --git a/Documentation/logos/dex-horizontal-white.png b/docs/logos/dex-horizontal-white.png similarity index 100% rename from Documentation/logos/dex-horizontal-white.png rename to docs/logos/dex-horizontal-white.png diff --git a/Documentation/logos/dex-horizontal-white.svg b/docs/logos/dex-horizontal-white.svg similarity index 100% rename from Documentation/logos/dex-horizontal-white.svg rename to docs/logos/dex-horizontal-white.svg diff --git a/examples/config-dev.yaml b/examples/config-dev.yaml index 5b054ebd..d894984d 100644 --- a/examples/config-dev.yaml +++ b/examples/config-dev.yaml @@ -6,7 +6,7 @@ issuer: http://127.0.0.1:5556/dex # The storage configuration determines where dex stores its state. Supported # options include SQL flavors and Kubernetes third party resources. # -# See the storage document at Documentation/storage.md for further information. +# See the documentation (https://dexidp.io/docs/storage/) for further information. storage: type: sqlite3 config: diff --git a/examples/grpc-client/README.md b/examples/grpc-client/README.md index 460a5d1c..59629e05 100644 --- a/examples/grpc-client/README.md +++ b/examples/grpc-client/README.md @@ -1,6 +1,6 @@ # Running a Dex gRPC client -Using gRPC, a client application can directly call methods on a server application as if it was a local object. The schema for Dex's gRPC API calls is defined in [`api/api.proto`][api-proto]. [`client.go`][client] is an example client program that makes a bunch of API calls to the dex server. For further details on the Dex API refer [`Documentation/api.md`][api-docs]. +Using gRPC, a client application can directly call methods on a server application as if it was a local object. The schema for Dex's gRPC API calls is defined in [`api/api.proto`][api-proto]. [`client.go`][client] is an example client program that makes a bunch of API calls to the dex server. For further details on the Dex API refer the [documentation][https://dexidp.io/docs/api/]. ## Generating Credentials @@ -60,4 +60,3 @@ Run the following command to destroy all the credentials files that were created ``` [api-proto]: ../../api/api.proto [client]: client.go -[api-docs]: ../../Documentation/api.md