-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·58 lines (58 loc) · 1.75 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
{
"details": {
"title": "Bench SideChain Deployer",
"syntax": "sidechain.sh [argument] [-option]",
"author": "BenchPay Foundation, LLC.",
"version": "1.2.0"
},
"commands": [{
"command": "start-node",
"description": "Start the Node",
"method": "process_node_start"
}, {
"command": "stop-node",
"description": "Stop the Node",
"method": "process_node_stop"
}, {
"command": "restart-node",
"description": "Restart the Node",
"method": "process_node_restart"
}, {
"command": "logs-node",
"description": "Show the Node logs",
"method": "process_node_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-node",
"description": "Install the Node",
"method": "app_install_node"
}, {
"command": "uninstall-node",
"description": "Uninstall the Node",
"method": "app_uninstall_node"
}, {
"command": "install-explorer",
"description": "Install the Explorer",
"method": "app_install_explorer"
}, {
"command": "uninstall-explorer",
"description": "Uninstall the Explorer",
"method": "app_uninstall_explorer"
}, {
"abbreviation": "-h",
"command": "help",
"description": "Output usage information",
"method": "help_me"
}]
}