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

74 lines
2.1 KiB
JSON
Raw Normal View History

2017-06-10 10:10:31 +02:00
{
2020-09-26 09:13:37 +02:00
"name": "GitLab",
2017-06-10 10:10:31 +02:00
"id": "gitlab",
"packaging_format": 1,
2021-01-27 10:29:51 +01:00
"version": "13.8.1~ynh1",
2017-06-10 10:10:31 +02:00
"description": {
2020-04-22 22:03:36 +02:00
"en": "Git-repository manager.",
"fr": "Gestionnaire de dépôts Git."
2017-06-10 10:10:31 +02:00
},
"url": "https://gitlab.com",
2018-12-16 23:01:46 +01:00
"license": "MIT",
2017-06-10 10:10:31 +02:00
"maintainer": {
2019-02-22 23:25:49 +01:00
"name": "kay0u",
"email": "pierre@kayou.io"
2017-06-10 10:10:31 +02:00
},
"requirements": {
"yunohost": ">= 4.1.5"
2017-06-10 10:10:31 +02:00
},
2018-12-16 23:01:46 +01:00
"multi_instance": false,
2017-06-10 10:10:31 +02:00
"services": [
2018-12-16 23:01:46 +01:00
"nginx"
2017-06-10 10:10:31 +02:00
],
"arguments": {
2019-01-26 14:46:52 +01:00
"install": [
2017-06-10 10:10:31 +02:00
{
"name": "domain",
"type": "domain",
"ask": {
2020-09-26 09:13:37 +02:00
"en": "Choose a domain name for GitLab",
"fr": "Choisissez un nom de domaine pour GitLab"
2017-06-10 10:10:31 +02:00
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
2020-09-26 09:13:37 +02:00
"en": "Choose a path for GitLab",
"fr": "Choisissez un chemin pour GitLab"
2017-06-10 10:10:31 +02:00
},
2020-05-23 01:04:34 +02:00
"example": "/gitlab",
"default": "/gitlab"
2017-06-10 10:10:31 +02:00
},
2017-06-28 15:41:05 +02:00
{
"name": "admin",
2019-01-26 14:46:52 +01:00
"type": "user",
2017-06-28 15:41:05 +02:00
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez ladministrateur"
},
"example": "johndoe"
},
2017-06-10 10:10:31 +02:00
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"default": true
},
{
"name": "use_web_account",
"type": "boolean",
"ask": {
2020-09-26 09:13:37 +02:00
"en": "Authorize account creation from GitLab web interface",
"fr": "Autoriser la création de compte depuis l'interface web de GitLab ?"
},
"default": false
2017-06-10 10:10:31 +02:00
}
]
}
2019-02-09 14:37:17 +01:00
}