32 lines
744 B
TOML
32 lines
744 B
TOML
signing_key = "tmp/secrets/signing.key"
|
|
|
|
[instance]
|
|
base_uri = "http://localhost:8086"
|
|
name = "Example org"
|
|
logo_uri = "https://example.org/logo.png"
|
|
|
|
[[applications]]
|
|
slug = "demo_app"
|
|
name = "Demo app"
|
|
description = "A super application where you can do everything you want."
|
|
client_id = "00000001-0000-0000-0000-000000000001"
|
|
client_secret = "dummy_client_secret"
|
|
login_uri = "https://localhost:9876"
|
|
allowed_redirect_uris = [
|
|
"http://localhost:9090/callback",
|
|
"http://localhost:9876/callback"
|
|
]
|
|
visibility = "Internal"
|
|
authorize_flow = "Implicit"
|
|
|
|
[[roles]]
|
|
slug = "basic"
|
|
name = "Basic"
|
|
description = "Basic user"
|
|
default = true
|
|
|
|
[[roles]]
|
|
slug = "admin"
|
|
name = "Administrator"
|
|
description = "Full power on organization instance"
|
|
|