-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #117 add a minimal dummy config to use by default
- Loading branch information
Showing
3 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
""" | ||
Dummy/example config | ||
""" | ||
from openeo_driver.users.oidc import OidcProvider | ||
|
||
from openeo_aggregator.config import AggregatorConfig | ||
|
||
config = AggregatorConfig( | ||
config_source=__file__, | ||
aggregator_backends={ | ||
"dummy": "https://openeo.example/openeo/1.1/", | ||
}, | ||
configured_oidc_providers=[ | ||
OidcProvider( | ||
id="egi", | ||
title="EGI Check-in", | ||
issuer="https://aai.egi.eu/auth/realms/egi/", | ||
scopes=["openid"], | ||
), | ||
], | ||
auth_entitlement_check=False, | ||
zookeeper_prefix="/openeo/aggregator/dummy/", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters