请为我解释文档。
我在Laravel上有一个项目,在Windows主机上,我安装了一个宅基地流浪汉,这已经足够了一段时间。
现在我需要更多的项目,一个项目使用Nginx
,另一个项目使用apache
,并且我需要它们同时运行。
所以我基本上需要更多的无聊的箱子,对吗?
我了解我需要的是Per Project Installation,而不是我所拥有的。
我缩进了当前的宅基地
vagrant ssh
在我的项目中,我做了
composer require laravel/homestead --dev
成功。
现在我需要使用make
vagrant@homestead:~/code/project1$ php vendor/bin/homestead make
dir=$(cd "${0%[/\\]*}" > /dev/null; cd '../laravel/homestead/bin' && pwd)
if [ -d /proc/cygdrive ]; then
case $(which php) in
$(readlink -n /proc/cygdrive)/*)
# We are in Cygwin using Windows php, so the path must be translated
dir=$(cygpath -m "$dir");
;;
esac
fi
"${dir}/homestead" "$@"
vagrant@homestead:~/code/project1