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
2.1 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
},
2022-12-04 02:08:10 +01:00
"version": "2.0.6~ynh5",
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
},
2021-09-16 17:39:59 +02:00
"license": "AGPL-3.0",
2021-09-08 10:52:58 +02:00
"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": {
2022-07-02 19:06:02 +02:00
"yunohost": ">= 4.3.0"
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": {
2022-07-02 19:06:02 +02:00
"install": [
2021-09-08 10:52:58 +02:00
{
"name": "domain",
2022-07-02 19:06:02 +02:00
"type": "domain"
},
{
"name": "is_public",
"type": "boolean",
"default": true,
"help": {
"en": "If false, ssbroom will only be usable by yunohost users."
}
2021-09-08 10:52:58 +02:00
},
{
2021-09-15 08:17:28 +02:00
"name": "ssb_admin_id",
"type": "string",
2021-10-08 15:12:38 +02:00
"ask": {
2021-10-08 20:54:05 +02:00
"en": "SSB ID of first admin of the room"
2021-10-08 15:12:38 +02:00
},
2021-09-15 08:17:28 +02:00
"help": {
"en": "This ssb_id is used as the username for the first admin of the room. Create an ssb account or use your already existing ssb account, and use your ssb public key as the room admin id."
},
"example": "@5Pt3dKy2HTJ0mWuS78oIiklIX0gBz6BTfEnXsbvke9c=.ed25519"
2021-09-08 10:52:58 +02:00
},
{
"name": "password",
"type": "password",
"help": {
2021-09-15 08:17:28 +02:00
"en": "Use this password to log into the admin interface for the ssb room."
}
2021-09-08 10:52:58 +02:00
}
]
}
}