From 27f874759ed48c07323d373aae3abcb9f5b14921 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Sun, 11 Aug 2013 12:45:44 -0400 Subject: [PATCH] added message about using "forever" module to run production version of nodebb --- nodebb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nodebb b/nodebb index b318989623..3733935784 100755 --- a/nodebb +++ b/nodebb @@ -1,4 +1,6 @@ #!/bin/bash clear -echo "Launching NodeBB in \"development\" mode" +echo "Launching NodeBB in \"development\" mode." +echo "To run the production build of NodeBB, please use \"forever\"." +echo "More Information: https://github.com/designcreateplay/NodeBB/wiki/How-to-run-NodeBB" NODE_ENV=development supervisor --extensions 'node|js|tpl' -- app $1 \ No newline at end of file