diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-23 22:14:44 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-23 22:14:44 -0500 |
commit | 45b58da72187a7b1ed4d75fc25bf5dd59a86a9c4 (patch) | |
tree | 721d43e663d0b9d7c15ebc4b180ba709e9e0f9c3 /src/config.php | |
parent | lang null check (diff) | |
download | crimson-45b58da72187a7b1ed4d75fc25bf5dd59a86a9c4.tar.gz crimson-45b58da72187a7b1ed4d75fc25bf5dd59a86a9c4.tar.bz2 crimson-45b58da72187a7b1ed4d75fc25bf5dd59a86a9c4.zip |
rework tooling to make environement loading easier
Diffstat (limited to 'src/config.php')
-rw-r--r-- | src/config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.php b/src/config.php index 0d52d96..2c759a2 100644 --- a/src/config.php +++ b/src/config.php @@ -19,7 +19,7 @@ // ENVIRONMENT // -// devlopment - do not cache any assets +// development - do not cache any assets // - use http host provided by user // // production - use generated timestamps for each file @@ -29,7 +29,7 @@ if (!defined('ENVIRONMENT')) { if (getenv('ENVIRONMENT') !== FALSE) define('ENVIRONMENT', getenv('ENVIRONMENT')); else - define('ENVIRONMENT', 'devlopment'); + define('ENVIRONMENT', 'development'); } // CONFIG |