1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dex_ynh.git synced 2024-09-03 18:26:22 +02:00
dex_ynh/manifest.json

59 lines
1.6 KiB
JSON
Raw Normal View History

2022-03-23 09:15:13 +01:00
{
2022-03-23 10:11:19 +01:00
"name": "Dex",
"id": "dex",
2022-03-23 09:15:13 +01:00
"packaging_format": 1,
"description": {
2022-03-23 11:03:13 +01:00
"en": "OpenID Connect Provider based on Yunohost LDAP server"
2022-03-23 09:15:13 +01:00
},
2022-03-23 10:11:19 +01:00
"version": "2.31.1~ynh1",
"url": "https://github.com/YunoHost-Apps/dex_ynh",
2022-03-23 09:15:13 +01:00
"upstream": {
2022-03-23 10:11:19 +01:00
"license": "Apache-2.0",
"website": "https://dexidp.io",
"demo": "",
"admindoc": "https://dexidp.io/docs/",
"userdoc": "",
"code": "https://github.com/dexidp/dex"
2022-03-23 09:15:13 +01:00
},
"license": "free",
"maintainer": {
2022-03-23 10:11:19 +01:00
"name": "Limezy"
2022-03-23 09:15:13 +01:00
},
"requirements": {
"yunohost": ">= 4.3.0"
},
"multi_instance": true,
"services": [
2022-03-23 10:11:19 +01:00
"nginx"
2022-03-23 09:15:13 +01:00
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/example",
"default": "/example"
},
{
2022-03-23 11:03:13 +01:00
"name": "OIDC_name",
2022-03-23 09:15:13 +01:00
"type": "string",
2022-03-23 10:11:19 +01:00
"ask": "Name of the app you want to connect to the OIDC auth flow"
2022-03-23 09:15:13 +01:00
},
{
2022-03-23 11:03:13 +01:00
"name": "OIDC_secret",
2022-03-23 10:11:19 +01:00
"type": "string",
"ask": "OIDC secret of the app you want to connect to the OIDC auth flow"
2022-03-23 09:15:13 +01:00
},
{
2022-03-23 11:03:13 +01:00
"name": "OIDC_callback",
2022-03-23 10:11:19 +01:00
"type": "string",
"ask": "Callback URI required by the app you want to connect to the OIDC auth flow"
2022-03-23 09:15:13 +01:00
}
]
}
}