From c78e3dfc0107e54300ca576b42fff69e2cf1e909 Mon Sep 17 00:00:00 2001 From: Adam Reis Date: Sun, 6 Jan 2019 05:38:13 +1300 Subject: [PATCH] Add example for referencing -l -o and -e parameters from within a JSON config file (#869) --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4fcbee4c..ce865ee7 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,10 @@ In addition to passing forever the path to a script (along with accompanying opt "append": true, "watch": true, "script": "index.js", - "sourceDir": "/home/myuser/app" + "sourceDir": "/home/myuser/app", + "logFile": "/home/myuser/logs/forever.log", + "outFile": "/home/myuser/logs/out.log", + "errFile": "/home/myuser/logs/error.log" } ```