From 9403006ba4391787a0b35aeb155e6fb3f397cbc0 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sat, 20 Jan 2018 10:02:21 -0800 Subject: [PATCH] Fix guide for changes to default environments. --- site/guide/configuration.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/site/guide/configuration.md b/site/guide/configuration.md index 70c1f40b..3b1eebad 100644 --- a/site/guide/configuration.md +++ b/site/guide/configuration.md @@ -15,8 +15,9 @@ _configuration environment_. There are three such environments: * `staging` (short: `stage`) * `production` (short: `prod`) -Without any action, Rocket applications run in the `development` environment. -The environment can be changed via the `ROCKET_ENV` environment variable. For +Without any action, Rocket applications run in the `development` environment for +debug builds and the `production` environment for non-debug builds. The +environment can be changed via the `ROCKET_ENV` environment variable. For example, to launch an application in the `staging` environment, we can run: ```sh