1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laravelの環境変数設定

Last updated at Posted at 2021-01-30

.env.localをバッチで読み込む

$ php artisan config:clear
$ php artisan [command] --env=local

設定ファイルがキャッシュされると、.envファイルはロードされなくなるため下記を先に実行する

$ php artisan config:clear

下記、他の方法あるようです。
https://qiita.com/mmmmmmanta/items/b992c7d8cd69343b6626

現在の環境を確認する(--env=localやったときだけlocalになるので、こちら単体で実行してもproductionのまま)

$ php artisan env
Current application environment: production
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?