Laravel APP_ENV should default to production, not live

This commit is contained in:
Deon George 2023-02-05 00:15:02 +11:00
parent 12431f6c2e
commit 31a2b03d89
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
set -e
role=${CONTAINER_ROLE:-app}
env=${APP_ENV:-live}
env=${APP_ENV:-production}
php=${PHP_DIR:-/var/www/html}
composer=${COMPOSER_HOME:-/var/cache/composer}