HomesteadでLarabelのローカル開発環境の構築をしています。
最後の確認画面で「No input file specified.」という表示がされます。
Homesteadyaml
1ip: "192.168.10.10" 2memory: 2048 3cpus: 1 4provider: virtualbox 5 6authorize: ~/.ssh/id_rsa.pub 7 8keys: 9 - ~/.ssh/id_rsa 10 11folders: 12 - map: ~/code 13 to: /home/vagrant/code 14 15sites: 16 - map: homestead.test 17 to: /home/vagrant/code/todo/public 18 19databases: 20 - homestead
htsts
1192.168.10.10 homestead.test
参考サイト
https://www.hypertextcandy.com/start-laravel-project-on-windows
https://dev83.com/laravel-homestead/#HomesteadVagrant_Box
原因かもしれないこと
参考サイト
https://zenn.dev/cat2pgm/articles/75bf00da04e79b
ホスト側とゲスト側に「code」というディレクトリが作成されなかったので、上記のサイトを参考にして、Vagrantfileに下記の記述をしました。
Vagrantfile
1Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| 2 if File.exist? aliasesPath then 3 config.vm.provision "file", source: aliasesPath, destination: "/tmp/bash_aliases" 4 config.vm.provision "shell" do |s| 5 s.inline = "awk '{ sub(\"\r$\", \"\"); print }' /tmp/bash_aliases > /home/vagrant/.bash_aliases" 6 end 7 config.vm.synced_folder "./code", "/home/vagrant/code", create:"true" # 追記コード 8 end
試したこと
参考サイト
https://qiita.com/ymk1102_1t/items/47b5c8763812255d5d68
上記のサイトを参考にして、Git bashに下記のコマンドを入力してエンターを押すと、写真のような結果になり、エラー内容を確認することができませんでした。
「readonly」になり、先に進めなくなりました。
vagrant@homestead:~$ vim /var/log/nginx/homestead.test-error.log
不明な点があれば随時編集させていただきます。
お知恵を拝借できましたら、幸いです。
何卒宜しくお願い致します。
あなたの回答
tips
プレビュー