generated from YunoHost/example_ynh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
64 lines (64 loc) · 2.08 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "Scuttlebutt Room",
"id": "ssbroom",
"packaging_format": 1,
"description": {
"en": "Secure Scuttlebutt room server implemented in Go"
},
"version": "2.0.6~ynh5",
"url": "https://github.com/ssb-ngi-pointer/go-ssb-room",
"upstream": {
"license": "free",
"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"
},
"license": "AGPL-3.0",
"maintainer": {
"name": "Max Fowler",
"email": "[email protected]"
},
"requirements": {
"yunohost": ">= 4.3.0"
},
"multi_instance": true,
"services": [
"nginx"
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain"
},
{
"name": "is_public",
"type": "boolean",
"default": true,
"help": {
"en": "If false, ssbroom will only be usable by yunohost users."
}
},
{
"name": "ssb_admin_id",
"type": "string",
"ask": {
"en": "SSB ID of first admin of the room"
},
"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"
},
{
"name": "password",
"type": "password",
"help": {
"en": "Use this password to log into the admin interface for the ssb room."
}
}
]
}
}