LoginSignup
0
1

More than 5 years have passed since last update.

Homesteadの設定を変更する

Posted at

homesteadをインストールしたディレクトリにVagrantファイルがあるので、これを変更することでVMの設定を変更できる。例えばVMが上手く起動しない場合などは

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
...
  config.vm.provider :virtualbox do |vb|
    vb.gui = true
  end
end

と書いておけばGUIモードで起動する。

homesteadをインストールしたディレクトリは、composer globalグローバルでインストールしていれば以下のコマンドで調べられるCOMPOSER_HOMEの下の/vendor/laravel/homestead/となる。

$ composer config --global home
0
1
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
0
1