From 27a43669a734f7cc6f370b6285588aacff304608 Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Sat, 23 Jan 2021 18:25:47 +0100 Subject: [PATCH] chore: add new development configuration Signed-off-by: Mark Sagi-Kazar --- .editorconfig | 2 +- config.dev.yaml | 35 +++++++++++++++++++++++++++++++++++ examples/config-dev.yaml | 3 +++ 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 config.dev.yaml diff --git a/.editorconfig b/.editorconfig index a47b7d48..27917441 100644 --- a/.editorconfig +++ b/.editorconfig @@ -17,5 +17,5 @@ indent_size = 2 [{Makefile,*.mk}] indent_style = tab -[config.yaml.dist] +[{config.yaml.dist,config.dev.yaml}] indent_size = 2 diff --git a/config.dev.yaml b/config.dev.yaml new file mode 100644 index 00000000..dda65e08 --- /dev/null +++ b/config.dev.yaml @@ -0,0 +1,35 @@ +issuer: http://127.0.0.1:5556/dex + +storage: + type: sqlite3 + config: + file: var/sqlite/dex.db + +web: + http: 127.0.0.1:5556 + +telemetry: + http: 127.0.0.1:5558 + +grpc: + addr: 127.0.0.1:5557 + +staticClients: + - id: example-app + redirectURIs: + - 'http://127.0.0.1:5555/callback' + name: 'Example App' + secret: ZXhhbXBsZS1hcHAtc2VjcmV0 + +connectors: + - type: mockCallback + id: mock + name: Example + +enablePasswordDB: true + +staticPasswords: + - email: "admin@example.com" + hash: "$2a$10$2b2cU8CPhOTaGrs1HRQuAueS7JTT5ZHsHSzYiFPm1leZck7Mc8T4W" + username: "admin" + userID: "08a8684b-db88-4b73-90a9-3cd1661f5466" diff --git a/examples/config-dev.yaml b/examples/config-dev.yaml index d894984d..1ca7aa66 100644 --- a/examples/config-dev.yaml +++ b/examples/config-dev.yaml @@ -1,3 +1,6 @@ +# DEPRECATED: use config.yaml.dist and config.dev.yaml examples in the repository root. +# TODO: keep this until all references are updated. + # The base path of dex and the external name of the OpenID Connect service. # This is the canonical URL that all clients MUST use to refer to dex. If a # path is provided, dex's HTTP service will listen at a non-root URL.