-
Notifications
You must be signed in to change notification settings - Fork 45
/
manifest.json
70 lines (70 loc) · 2.18 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
65
66
67
68
69
70
{
"details": {
"title": "ARK Bridgechain Deployment script.",
"syntax": "bridgechain.sh [argument] [-option]",
"author": "Alex Barnsley <[email protected]> & Brian Faust <[email protected]>",
"version": "2.0.0"
},
"commands": [{
"command": "start-core",
"description": "Start the Core",
"method": "process_core_start"
}, {
"command": "stop-core",
"description": "Stop the Core",
"method": "process_core_stop"
}, {
"command": "restart-core",
"description": "Restart the Core",
"method": "process_core_restart"
}, {
"command": "logs-core",
"description": "Show the Core logs",
"method": "process_core_logs"
}, {
"command": "start-explorer",
"description": "Start the Explorer",
"method": "process_explorer_start"
}, {
"command": "stop-explorer",
"description": "Stop the Explorer",
"method": "process_explorer_stop"
}, {
"command": "restart-explorer",
"description": "Restart the Explorer",
"method": "process_explorer_restart"
}, {
"command": "install-core",
"description": "Install the Core",
"method": "app_install_core"
}, {
"command": "uninstall-core",
"description": "Uninstall the Core",
"method": "app_uninstall_core"
}, {
"command": "update-core",
"description": "Update Core to the latest version",
"method": "update_core_handle"
}, {
"command": "install-explorer",
"description": "Install the Explorer",
"method": "app_install_explorer"
}, {
"command": "uninstall-explorer",
"description": "Uninstall the Explorer",
"method": "app_uninstall_explorer"
}, {
"command": "passphrases",
"description": "Output Core passphrases",
"method": "app_output_passphrases"
}, {
"command": "get-ip",
"description": "Get machine IP",
"method": "get_ip"
}, {
"abbreviation": "-h",
"command": "help",
"description": "Output usage information",
"method": "help_me"
}]
}