2014-03-02 11:58:17 +00:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
|
|
|
|
|
# The vagrant config for HabitRPG. Requires vagrant on your local machine.
|
|
|
|
|
# The box fetched will be precise64 located:
|
|
|
|
|
# http://files.vagrantup.com/precise64.box
|
|
|
|
|
|
|
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
|
config.vm.box = "habitrpg"
|
2014-03-10 00:25:00 +00:00
|
|
|
config.vm.box_url = "http://dl.dropboxusercontent.com/u/4309797/devel/habitrpg/habitrpg.box"
|
|
|
|
|
config.vm.hostname = "habitrpg"
|
2014-03-02 11:58:17 +00:00
|
|
|
config.vm.network "forwarded_port", guest: 3000, host: 3000
|
2014-03-10 00:25:00 +00:00
|
|
|
#config.vm.provision :shell, :path => "vagrant.sh"
|
2014-03-02 11:58:17 +00:00
|
|
|
end
|