From be7e4c8730b0458087c99bf97f6938f6599dd135 Mon Sep 17 00:00:00 2001 From: Michael Andrewartha Date: Mon, 13 Jan 2020 22:29:51 +1300 Subject: [PATCH] Set environment type in example When running a dev/build for the first time, environment should be set to 'dev' or it won't run. Setting this in the example gives guidance to someone building a site for the first time (or if it's been ages!) --- .env.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.env.example b/.env.example index b8bb815..579983a 100644 --- a/.env.example +++ b/.env.example @@ -7,3 +7,6 @@ SS_DATABASE_SERVER="localhost" SS_DATABASE_USERNAME="" SS_DATABASE_PASSWORD="" SS_DATABASE_NAME="" + +# WARNING: in a live environent, change this to "live" instead of dev +SS_ENVIRONMENT_TYPE="dev"