1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gotosocial_ynh.git synced 2024-09-03 19:16:06 +02:00
gotosocial_ynh/manifest.json

77 lines
2.3 KiB
JSON
Raw Normal View History

2021-08-15 21:48:06 +02:00
{
2021-08-15 21:58:07 +02:00
"name": "GoToSocial",
"id": "gotosocial",
2021-08-15 21:48:06 +02:00
"packaging_format": 1,
"description": {
2021-08-15 21:58:07 +02:00
"en": "GoToSocial is an ActivityPub social network server, written in Golang.",
"fr": "GoToSocial est un serveur de réseau social basé sur ActivityPub écrit en Golang."
2021-08-15 21:48:06 +02:00
},
"version": "1.0~ynh1",
"url": "https://example.com",
"upstream": {
"license": "free",
2021-08-15 21:58:07 +02:00
"website": "https://docs.gotosocial.org/",
"demo": "",
"admindoc": "https://docs.gotosocial.org/en/latest/",
"userdoc": "https://docs.gotosocial.org/en/latest/",
"code": "https://github.com/superseriousbusiness/gotosocial"
2021-08-15 21:48:06 +02:00
},
"license": "free",
"maintainer": {
2021-08-15 21:58:07 +02:00
"name": "OniriCorpe",
"email": ""
2021-08-15 21:48:06 +02:00
},
"requirements": {
"yunohost": ">= 4.1.3"
},
2021-08-15 21:58:07 +02:00
"multi_instance": flase,
2021-08-15 21:48:06 +02:00
"services": [
"nginx",
2021-08-15 21:58:07 +02:00
"postgresql"
2021-08-15 21:48:06 +02:00
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"example": "example.com"
},
{
"name": "path",
"type": "path",
"example": "/example",
"default": "/example"
},
{
"name": "admin",
"type": "user",
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
},
{
"name": "password",
"type": "password",
"help": {
"en": "Use the help field to add an information for the admin about this question.",
"fr": "Utilisez le champ aide pour ajouter une information à l'intention de l'administrateur à propos de cette question."
},
"example": "Choose a password"
}
]
}
}