From ff7ce55ae29fb7a715fd3b8ed596b67356e11c0d Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 24 Jul 2014 18:36:41 -0400 Subject: [PATCH] #1892 --- nodebb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodebb b/nodebb index 2bd42c3b52..9e5efe0b2b 100755 --- a/nodebb +++ b/nodebb @@ -99,14 +99,14 @@ case "$1" in dev) echo "Launching NodeBB in \"development\" mode." echo "To run the production build of NodeBB, please use \"forever\"." - echo "More Information: https://github.com/NodeBB/NodeBB/wiki/How-to-run-NodeBB" + echo "More Information: https://docs.nodebb.org/en/latest/running/index.html" NODE_ENV=development "$node" loader --no-daemon "$@" ;; watch) echo "Launching NodeBB in \"development\" mode." echo "To run the production build of NodeBB, please use \"forever\"." - echo "More Information: https://github.com/NodeBB/NodeBB/wiki/How-to-run-NodeBB" + echo "More Information: https://docs.nodebb.org/en/latest/running/index.html" NODE_ENV=development supervisor -q --ignore public/templates --extensions 'node|js|tpl|less' -- app "$@" ;;