Skip to content
Soji Takahashi edited this page Nov 28, 2021 · 5 revisions

開発者(コントリビューター)向けFAQ

Q. 開発環境の起動方法は?

README の「 開発環境セットアップ方法 」に記載しております。

Q. Docker 開発環境において The stream or file "/var/www/html/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied と表示される

A. Docker 開発環境が起動した状態で、以下のコマンドを実行してください。

($ 記号の入力は不要です)

$ yarn docker-bash
$ chown www-data storage/ -R
$ exit

Q. Docker 開発環境において Unable to write to the file at /var/www/html/.env. と表示される

A. Docker 開発環境が起動した状態で、以下のコマンドを実行してください。

($ 記号の入力は不要です)

$ yarn docker-bash
$ chown www-data .env -R
$ exit

Q. ローカル環境で PHP テストを実行するには?

A. Docker 開発環境を起動した状態で yarn phpunit を実行します。