Skip to content

Commit

Permalink
chore: add new development configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Sagi-Kazar <[email protected]>
  • Loading branch information
sagikazarmark committed Jan 28, 2021
1 parent e9b83e0 commit 27a4366
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ indent_size = 2
[{Makefile,*.mk}]
indent_style = tab

[config.yaml.dist]
[{config.yaml.dist,config.dev.yaml}]
indent_size = 2
35 changes: 35 additions & 0 deletions config.dev.yaml
Original file line number Diff line number Diff line change
@@ -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: "[email protected]"
hash: "$2a$10$2b2cU8CPhOTaGrs1HRQuAueS7JTT5ZHsHSzYiFPm1leZck7Mc8T4W"
username: "admin"
userID: "08a8684b-db88-4b73-90a9-3cd1661f5466"
3 changes: 3 additions & 0 deletions examples/config-dev.yaml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 27a4366

Please sign in to comment.