1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bonfire_ynh.git synced 2024-09-03 18:16:01 +02:00
This commit is contained in:
lapineige 2023-01-14 17:19:02 +01:00 committed by GitHub
parent a7f21ba17a
commit db0d70a9af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,71 +1,74 @@
{ {
"name": "Bonfire", "name": "Bonfire",
"id": "bonfire", "id": "bonfire",
"packaging_format": 1, "packaging_format": 1,
"description": { "description": {
"en": "Federated social networking server built on ActivityPub open protocol", "en": "Federated social networking server built on ActivityPub open protocol",
"fr": "Serveur de réseautage social fédéré basé sur le protocole ouvert ActivityPub" "fr": "Serveur de réseautage social fédéré basé sur le protocole ouvert ActivityPub"
}, },
"version": "0.1~ynh1", "version": "0.1~ynh1",
"url": "https://example.com", "url": "https://example.com",
"upstream": { "upstream": {
"license": "GNU Affero General Public License v3.0", "license": "GNU Affero General Public License v3.0",
"website": "https://bonfirenetworks.org/", "website": "https://bonfirenetworks.org/",
"demo": "https://playground.bonfire.cafe/", "demo": "https://playground.bonfire.cafe/",
"admindoc": "https://bonfirenetworks.org/docs/", "admindoc": "https://bonfirenetworks.org/docs/",
"userdoc": "https://bonfirenetworks.org/docs/", "userdoc": "https://bonfirenetworks.org/docs/",
"code": "https://github.com/bonfire-networks/bonfire-app" "code": "https://github.com/bonfire-networks/bonfire-app"
}, },
"license": "free", "license": "free",
"maintainer": { "maintainer": {
"name": "Lapineige" "name": "Lapineige"
}, },
"requirements": { "requirements": {
"yunohost": ">= 11.0.0" "yunohost": ">= 11.0.0"
}, },
"multi_instance": true, "multi_instance": true,
"services": [ "services": [
"nginx", "nginx"
], ],
"arguments": { "arguments": {
"install": [ "install": [
{ {
"name": "domain", "name": "domain",
"type": "domain" "type": "domain"
}, },
{ {
"name": "path", "name": "path",
"type": "path", "type": "path",
"example": "/example", "example": "/example",
"default": "/" "default": "/"
}, },
{ {
"name": "is_public", "name": "is_public",
"type": "boolean", "type": "boolean",
"default": true "default": true
}, },
{ {
"name": "language", "name": "language",
"type": "string", "type": "string",
"ask": { "ask": {
"en": "Choose the application language", "en": "Choose the application language",
"fr": "Choisissez la langue de l'application" "fr": "Choisissez la langue de l'application"
}, },
"choices": ["fr", "en"], "choices": [
"default": "fr" "fr",
}, "en"
{ ],
"name": "admin", "default": "fr"
"type": "user", },
"help": { {
"en": "Name of the account that will have admin rights on this instance.", "name": "admin",
"fr": "Le nom du compte qui aura les droits d'administration sur l'instance." "type": "user",
} "help": {
}, "en": "Name of the account that will have admin rights on this instance.",
{ "fr": "Le nom du compte qui aura les droits d'administration sur l'instance."
"name": "password", }
"type": "password", },
} {
] "name": "password",
} "type": "password"
}
]
}
} }