1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ssbroom_ynh.git synced 2024-09-03 20:26:29 +02:00
ssbroom_ynh/manifest.json

65 lines
1.9 KiB
JSON
Raw Normal View History

2021-09-08 10:52:58 +02:00
{
2021-09-10 14:41:29 +02:00
"name": "Scuttlebutt Room",
"id": "ssbroom",
2021-09-08 10:52:58 +02:00
"packaging_format": 1,
"description": {
2021-09-10 14:41:29 +02:00
"en": "Secure Scuttlebutt room server implemented in Go"
2021-09-08 10:52:58 +02:00
},
"version": "1.0~ynh1",
2021-09-10 14:41:29 +02:00
"url": "https://github.com/ssb-ngi-pointer/go-ssb-room",
2021-09-08 10:52:58 +02:00
"upstream": {
"license": "free",
2021-09-10 14:41:29 +02:00
"website": "https://github.com/ssb-ngi-pointer/go-ssb-room",
"demo": "https://hermies.club/",
"admindoc": "https://github.com/ssb-ngi-pointer/go-ssb-room/blob/master/README.md",
"userdoc": "https://github.com/ssb-ngi-pointer/go-ssb-room/blob/master/README.md",
"code": "https://github.com/ssb-ngi-pointer/go-ssb-room"
2021-09-08 10:52:58 +02:00
},
"license": "free",
"maintainer": {
2021-09-10 14:41:29 +02:00
"name": "Max Fowler",
"email": "max@mfowler.info"
2021-09-08 10:52:58 +02:00
},
"requirements": {
2021-09-10 14:41:29 +02:00
"yunohost": ">= 4.1.7"
2021-09-08 10:52:58 +02:00
},
"multi_instance": true,
"services": [
2021-09-10 14:41:29 +02:00
"nginx"
2021-09-08 10:52:58 +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": "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"
}
]
}
}