From 75c720afa5fb5fb4f2859075d9163a0c1b33f43a Mon Sep 17 00:00:00 2001 From: Mitch Pirtle Date: Wed, 7 Aug 2013 15:55:41 +0200 Subject: [PATCH] Adding explanation for environments to README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a7e6473e..9d49c482 100644 --- a/README.md +++ b/README.md @@ -55,11 +55,11 @@ There are three environments provided by default, __development__, __test__, and To run with a different environment, just specify NODE_ENV as you call grunt: -$ NODE_ENV=test grunt + $ NODE_ENV=test grunt If you are using node instead of grunt, it is very similar: -$ NODE_ENV=test node server + $ NODE_ENV=test node server NOTE: Running Node.js applications in the __production__ environment enables caching, which is disabled by default in all other environments.