This repository was archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Configuration
Steven Jones edited this page Jan 19, 2014
·
11 revisions
You can configure how Parrot's Vagrantfile sets things up and adjust settings that built the generated virtual machine.
To configure Parrot, place a file called: config.yml
into the root of the parrot directory. You can then add options and values into the file, for example, the defaults are:
sites: "sites"
databases: "databases"
memory: 2048
with_gui: false
ip: "192.168.50.4"
The syntax is yaml, in case you hadn't guessed.
The options that you can configure are:
-
sites
- This is the location relative to the Vagrantfile location that will be searched for directories to add a vhosts. -
databases
- This is the location relative to the Vagrantfile location that will be searched for.sql
files that will be automatically imported. -
memory
- The amount of memory to provision the virtual machine with, in MB. -
with_gui
- Show the virtual machine provider's GUI when the virtual machine is booted. -
ip
- The IP address of the provisioned virtual machine. Note that this will need to be unique among running virtual machines on your host machine.