forked from logto-io/logto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add staging pipeline file (#36) * add file * fix * feat(cli): update seeder (#35) * Add deploy stage to logto-admin (#38) --------- Co-authored-by: Norbert Nagy <[email protected]> Co-authored-by: William Monteiro <[email protected]>
- Loading branch information
1 parent
c4f94d9
commit ce792ab
Showing
9 changed files
with
276 additions
and
123 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
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
32 changes: 0 additions & 32 deletions
32
packages/cli/src/commands/database/ogcio/ogcio-seeder-deployment.json
This file was deleted.
Oops, something went wrong.
114 changes: 114 additions & 0 deletions
114
packages/cli/src/commands/database/ogcio/ogcio-seeder-dev.json
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,114 @@ | ||
{ | ||
"default": { | ||
"organizations": [ | ||
{ | ||
"name": "OGCIO", | ||
"description": "OGCIO Organization", | ||
"id": "ogcio" | ||
} | ||
], | ||
"applications": [ | ||
{ | ||
"name": "Payments Building Block", | ||
"description": "Payments App of Life Events", | ||
"type": "Traditional", | ||
"redirect_uri": "<SEEDER_PAYMENTS_APP_REDIRECT_URI>", | ||
"logout_redirect_uri": "<SEEDER_PAYMENTS_APP_LOGOUT_REDIRECT_URI>", | ||
"secret": "<SEEDER_PAYMENTS_APP_SECRET>", | ||
"id": "r5f56tpkytpqyyshiutd2" | ||
}, | ||
{ | ||
"name": "Messaging Building Block", | ||
"description": "Messaging App of Life Events", | ||
"type": "Traditional", | ||
"redirect_uri": "<SEEDER_MESSAGING_APP_REDIRECT_URI>", | ||
"logout_redirect_uri": "<SEEDER_MESSAGING_APP_LOGOUT_REDIRECT_URI>", | ||
"secret": "<SEEDER_MESSAGING_APP_SECRET>", | ||
"id": "1lvmteh2ao3xrswyq7j3e" | ||
} | ||
], | ||
"resources": [ | ||
{ | ||
"id": "payments-api", | ||
"name": "Payments Building Block API", | ||
"indicator": "<SEEDER_PAYMENTS_API_INDICATOR>" | ||
}, | ||
{ | ||
"id": "messaging-api", | ||
"name": "Messaging Building Block API", | ||
"indicator": "<SEEDER_MESSAGING_API_INDICATOR>" | ||
} | ||
], | ||
"connectors": [ | ||
{ | ||
"id": "mygovid", | ||
"sync_profile": false, | ||
"connector_id": "mygovid", | ||
"config": { | ||
"scope": "openid profile email", | ||
"clientId": "<SEEDER_MYGOVID_CONNECTOR_CLIENT_ID>", | ||
"clientSecret": "<SEEDER_MYGOVID_CONNECTOR_CLIENT_SECRET>", | ||
"tokenEndpoint": "<SEEDER_MYGOVID_CONNECTOR_TOKEN_ENDPOINT>", | ||
"authorizationEndpoint": "<SEEDER_MYGOVID_CONNECTOR_AUTHORIZATION_ENDPOINT>", | ||
"tokenEndpointAuthMethod": "client_secret_post", | ||
"idTokenVerificationConfig": { | ||
"jwksUri": "<SEEDER_MYGOVID_CONNECTOR_JWS_URI>" | ||
}, | ||
"clientSecretJwtSigningAlgorithm": "HS256" | ||
}, | ||
"metadata": { | ||
"logo": "https://mygovidstatic.blob.core.windows.net/assets/images/favicon_196x196.png", | ||
"name": { | ||
"en": "MyGovId" | ||
}, | ||
"target": "MyGovId (MyGovId connector)" | ||
} | ||
} | ||
], | ||
"sign_in_experiences": [ | ||
{ | ||
"id": "default", | ||
"color": { | ||
"primaryColor": "#007DA6", | ||
"darkPrimaryColor": "#007DA6", | ||
"isDarkModeEnabled": false | ||
}, | ||
"branding": { | ||
"logoUrl": "https://mygovidstatic.blob.core.windows.net/assets/images/helpchat-logo.png", | ||
"darkLogoUrl": "https://mygovidstatic.blob.core.windows.net/assets/images/helpchat-logo.png" | ||
}, | ||
"language_info": { | ||
"autoDetect": true, | ||
"fallbackLanguage": "en" | ||
}, | ||
"sign_in": { | ||
"methods": [] | ||
}, | ||
"sign_up": { | ||
"verify": false, | ||
"password": false, | ||
"identifiers": [] | ||
}, | ||
"social_sign_in_connector_targets": [ | ||
"MyGovId (MyGovId connector)" | ||
], | ||
"sign_in_mode": "SignInAndRegister" | ||
} | ||
], | ||
"webhooks": [ | ||
{ | ||
"id": "login_webhook", | ||
"name": "User log in", | ||
"events": [ | ||
"PostRegister", | ||
"PostSignIn" | ||
], | ||
"config": { | ||
"url": "<SEEDER_WEBHOOK_LOGIN_URL>" | ||
}, | ||
"signing_key": "<SEEDER_WEBHOOK_SIGNING_KEY>", | ||
"enabled": true | ||
} | ||
] | ||
} | ||
} |
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
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
Oops, something went wrong.