0

I've made a change to my .ENV file and the new changes are not taking effect inside Laravel's Forge. How do I tell Forge to re-fetch/re-fresh it?

I've restarted all services. No difference. Still using old data from previous ENV. I've setup Forge to use BitBucket repo and AWS.

miken32
  • 42,008
  • 16
  • 111
  • 154
Jquestions
  • 1,650
  • 1
  • 23
  • 30

1 Answers1

3

The .env file isn't cached, however the config is. You can try running php artisan config:clear which removes the configuration cache file.

You can look at this thread for more info.

wwerner
  • 4,227
  • 1
  • 21
  • 39
Fredrik
  • 3,027
  • 8
  • 33
  • 66