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

66 lines
2 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,
2022-02-24 19:05:26 +01:00
"version": "14.8.1~ynh1",
2017-06-10 10:10:31 +02:00
"description": {
2021-12-09 15:11:30 +01:00
"en": "Git-repository manager providing wiki, issue-tracking and CI/CD pipeline features",
"fr": "Gestionnaire de dépôts Git proposant des fonctionnalités de wiki, suivi de bugs et de pipeline CI/CD"
2017-06-10 10:10:31 +02:00
},
"url": "https://gitlab.com",
2021-05-28 16:13:02 +02:00
"upstream": {
"license": "MIT",
"website": "https://gitlab.com",
"demo": "https://gitlab.com/explore",
"admindoc": "https://docs.gitlab.com/",
"code": "https://gitlab.com/gitlab-org/omnibus-gitlab - https://gitlab.com/gitlab-org/gitlab"
},
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": {
2021-05-15 11:00:03 +02:00
"yunohost": ">= 4.2.3"
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"
2017-06-10 10:10:31 +02:00
},
{
"name": "path",
"type": "path",
2020-05-23 01:04:34 +02:00
"default": "/gitlab"
2017-06-10 10:10:31 +02:00
},
2017-06-28 15:41:05 +02:00
{
"name": "admin",
"type": "user"
2017-06-28 15:41:05 +02:00
},
2017-06-10 10:10:31 +02:00
{
"name": "is_public",
"type": "boolean",
2021-10-21 01:39:15 +02:00
"help": {
2021-12-09 15:11:30 +01:00
"en": "If your GitLab instance is public, anyone can see your public repositories.",
"fr": "Si votre instance GitLab est publique, tout le monde pourra voir vos dépôts publics."
2021-10-21 01:39:15 +02:00
},
2017-06-10 10:10:31 +02:00
"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
}