yunohost-gitea_ynh/manifest.json

74 lines
2.8 KiB
JSON
Raw Normal View History

2018-02-25 21:45:24 +01:00
{
"name": "Gitea",
"id": "gitea",
"packaging_format": 1,
"description": {
"en": "Lightweight Git forge",
"fr": "Forge Git légère"
2018-02-25 21:45:24 +01:00
},
2018-10-18 11:27:20 +02:00
"url": "http://gitea.io",
2018-02-25 21:45:24 +01:00
"license": "MIT",
2022-02-01 22:05:20 +01:00
"version": "1.16.0~ynh1",
2018-02-25 21:45:24 +01:00
"maintainer": {
2021-04-01 22:19:27 +02:00
"name": "Josué Tille",
"email": "josue@tille.ch"
},
"previous_maintainers": {
"name": "rafi59",
"email": "rafi59_dev@srvmaison.fr.nf"
2018-02-25 21:45:24 +01:00
},
"multi_instance": true,
"services": [
"nginx",
"mysql"
],
"requirements": {
2021-06-26 12:35:14 +02:00
"yunohost": ">= 4.2.6.1"
2018-02-25 21:45:24 +01:00
},
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for Gitea",
"fr": "Choisissez un domaine pour Gitea"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Gitea",
"fr": "Choisissez un chemin pour Gitea"
},
"example": "/gitea",
"default": "/gitea"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose the Gitea administrator (must be an existing YunoHost user)",
"fr": "Choisissez l'administrateur de Gitea (doit être un utilisateur YunoHost existant)"
},
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public site?",
2018-02-25 21:45:24 +01:00
"fr": "Est-ce un site public ?"
},
"help": {
"en": "A public server means that everybody is able to access to the main page of the forge, on the public profile of the user and on the public repository. But you still can limit the access to each repository if you set it as private. Note that to be able to use the remote Git command (clone, pull, push) with HTTP and to use the API by (by example with a smartphone), you need to set this application as public.",
"fr": "Un serveur public signifie que tout le monde peut accéder à la page principale de la forge, au profil public des utilisateurs et aux dépôts publics. Vous pouvez également définir les dépôts comme étant privés. Notez que pour pouvoir utiliser les commandes Git distantes (clone, pull, push) avec HTTP et pour pouvoir utiliser l'API (par exemple avec un smartphone), vous devez paramétrer cette application comme étant publique."
},
2018-02-25 21:45:24 +01:00
"default": true
}
]
}
}