5
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 1 year has passed since last update.

[Laravel] --env=testing が効かない時の解決例

Posted at

何が起きた?

下記のコマンドを使った時に.env.testingではなく.envを読みにいってしまった。

php artisan migrate --seed --env=testing

原因

php artisan config:cache

のコマンドで.envで環境ファイルが固定されてしまっていた。

解決例

php artisan config:clear 

を実行しphp artisan migrate --seed --env=testingを実行することで、.env.testingを読ませることができることを確認した。

余談

下記でも同様の結果を得られることを確認できた。

php artisan config:cache --env=testing 
5
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
5
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?