@dansup FYI it’s good practice to load the values from the `.env` file into the OS-level environment variables instead of reading from the file every time.
https://gist.github.com/mihow/9c7f559807069a03e302605691f85572
@dansup FYI it’s good practice to load the values from the `.env` file into the OS-level environment variables instead of reading from the file every time.
https://gist.github.com/mihow/9c7f559807069a03e302605691f85572
@svenluijten The laravel framework we use does that, .env values are referenced in the `config/*.php` files which are basically KV arrays that are compiled and cached.
The opcache php extension requires one to restart php-fpm after editing the .env because it's cached so hard