forked from briandeheus/GraceNode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.aeternorc
33 lines (33 loc) · 1.99 KB
/
.aeternorc
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
{
"name": "gracenode",
"color": true,
"help": {
"usage": "Usage: ./gracenode {start|stop|stopall|restart|restartall|reload|update|status|tail|list|clean} [PATH] [OPTION]",
"reloadNote": "{reload} works ONLY if your application handles SIGHUP.",
"description": "Daemonaize a target application process and monitor it.\n",
"options": "Options:",
"config": " -c, --config=[path]:",
"configDesc": " Executes with configurations that act as command options such as -l etc.",
"log": " -l, --log=[path]:",
"logDesc": " Write log data into a file.",
"exec": " -e, --exec=[path]:",
"execDesc": " Daemonize the target application with the given interpreter.",
"watch": " -w, -a:",
"watchDesc": " Automatically restart the daemon process if watch file(s) change.",
"verbose": " -v, --verbose:",
"verboseDesc": " Be more verbose.",
"forced": " -f:",
"forcedDesc": " Stops or restarts all running daemon processes without user inputs. This option is for {stopall|restartall} command only.",
"example": "Examples:",
"start": " ./gracenode start",
"startDesc": " Start a daemon process.",
"startWithPath": " ./gracenode start ./myServer.js",
"startWithPathDesc": " Start a daemon process of \"./myServer.js\".",
"startWithLog": " ./gracenode start -l ./daemonlog/",
"startWithLogDesc": " Start a daemon process and write log data to \"./daemonlog/\" directory.",
"startAndWatch": " ./gracenode start -w ./modules ./lib",
"startAndWatchDesc": " Start a daemon process and watch \"./modules\" and \"./lib\". Anything changes in the watched directory, daemon process will automatically restart",
"update": " ./gracenode update ./myapp.js",
"updateDesc": " Updates a currently running daemon application such as -l to add/change logging or -w [...] to add watch directories/files to auto-reload"
}
}