Added Vagrantfile and simple provisioning script. This sets up the packages, gems and databases so that `rake db:migrate` is ready to run. This might be too much and perhaps more should be done by the user themselves, I'm not sure...
16 lines
515 B
Ruby
16 lines
515 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "precise64"
|
|
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
|
|
|
|
# port forward for webrick on 3000
|
|
config.vm.network :forwarded_port, guest: 3000, host: 3000
|
|
|
|
# set up synced folder to source in /srv/openstreetmap-website
|
|
config.vm.synced_folder ".", "/srv/openstreetmap-website"
|
|
|
|
# provision using a simple shell script
|
|
config.vm.provision :shell, :path => "config/vagrant/provision.sh"
|
|
end
|