Email or username:

Password:

Forgot your password?
Top-level
Sven

@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.

gist.github.com/mihow/9c7f5598

1 comment
dansup

@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

Go Up