You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By the time I went to install openai, I had already renamed my .env to .env.local, additionally .env.example is already gone too.
Both of these situations lead to exceptions during openai:install:
file_get_contents(/app/.env): Failed to open stream: No such file or directory
file_get_contents(/app/.env.example): Failed to open stream: No such file or directory
The text was updated successfully, but these errors were encountered:
If you are using Laravel in a docker environment, it is advisable to rename .env to .env.local to avoid docker (compose) using the file to inject/interpolate those variables at container startup time.
Laravel supports environment specific files via .env.{environment-name}.
This is more of a DX problem.
By the time I went to install openai, I had already renamed my
.env
to.env.local
, additionally.env.example
is already gone too.Both of these situations lead to exceptions during
openai:install
:The text was updated successfully, but these errors were encountered: