编程学习网 > PHP技术 > php中级 > Vagrant入门——项目设置(Project Setup)
2014
11-07

Vagrant入门——项目设置(Project Setup)

The first step for any project to use Vagrant is to configure Vagrant using aVagrantfile. The purpose of the Vagrantfile is twofold:

  1. Mark the root directory of your project. A lot of the configuration of Vagrant is relative to this root directory.

  2. Describe the kind of machine and resources you need to run your project, as well as what software to install and how you want to access it.

Vagrant has a built-in command for initializing a directory for usage with Vagrant:vagrant init. For the purpose of this getting started guide, please follow along in your terminal:

vagrant

This will place a Vagrantfile in your current directory. You can take a look at the Vagrantfile if you want, it is filled with comments and examples. Don't be afraid if it looks intimidating, we'll modify it soon enough.

You can also run vagrant init in a pre-existing directory to setup Vagrant for an existing project.

The Vagrantfile is meant to be committed to version control with your project, if you use version control. This way, every person working with that project can benefit from Vagrant without any upfront work.

 

扫码二维码 获取免费视频学习资料

Python编程学习

查 看2022高级编程视频教程免费获取