mirror of
https://gitlab.com/omair-personal/vagrant.git
synced 2026-08-19 04:14:10 +00:00
22 lines
561 B
Markdown
22 lines
561 B
Markdown
### Vagrant for Development
|
|
|
|
Ensure that Virtualbox is installed, with host only network enabled and the adapter address set to 10.0.0.1 and the mask set to 255.255.255.0.
|
|
|
|
Install requisite vagrant plugins with:
|
|
|
|
```
|
|
vagrant plugin install vagrant-env
|
|
vagrant plugin install vagrant-vbguest
|
|
```
|
|
|
|
Copy the .env.example file to .env and change variables as needed.
|
|
|
|
To start the virtual machines, run the following:
|
|
|
|
```
|
|
vagrant up <db|exchange|izyim>
|
|
```
|
|
|
|
### Private Key
|
|
|
|
To use your own private key, ensure that the .env file variable PRIVATE_KEY_PATH is set. |