68746fd795
Since we don't have a good strategy which takes a username and password add a mock connector which implementes PasswordConnector so we can develop the frontend screens.
25 lines
479 B
YAML
25 lines
479 B
YAML
issuer: http://127.0.0.1:5556
|
|
storage:
|
|
# NOTE(ericchiang): This will be replaced by sqlite3 in the future.
|
|
type: memory
|
|
|
|
web:
|
|
http: 127.0.0.1:5556
|
|
|
|
connectors:
|
|
- type: mockCallback
|
|
id: mock-callback
|
|
name: Mock
|
|
- type: mockPassword
|
|
id: mock-password
|
|
name: Password
|
|
config:
|
|
username: "admin"
|
|
password: "PASSWORD"
|
|
|
|
staticClients:
|
|
- id: example-app
|
|
redirectURIs:
|
|
- 'http://127.0.0.1:5555/callback'
|
|
name: 'Example App'
|
|
secret: ZXhhbXBsZS1hcHAtc2VjcmV0
|