aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Vagrantfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index d238fb8b6..5d10d6c08 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -7,10 +7,13 @@
# You can customise the FQDN in your environment
# export ALAVETELI_VAGRANT_FQDN=alaveteli.dev
#
-VAGRANTFILE_API_VERSION = "2"
+# Customisation Options
+# =====================
ALAVETELI_FQDN = ENV['ALAVETELI_VAGRANT_FQDN'] || "alaveteli.10.10.10.30.xip.io"
ALAVETELI_MEMORY = ENV['ALAVETELI_VAGRANT_MEMORY'] || 1536
+VAGRANTFILE_API_VERSION = "2"
+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"