mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-09 08:25:00 -04:00
add vagrant support to etherpad-lite
This commit is contained in:
parent
beec69ac1c
commit
d99bb02d4b
7 changed files with 168 additions and 0 deletions
20
vagrant/Vagrantfile
vendored
Normal file
20
vagrant/Vagrantfile
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
Vagrant::Config.run do |config|
|
||||
config.vm.box = "lucid32"
|
||||
config.vm.box_url = "http://files.vagrantup.com/lucid32.box"
|
||||
config.vm.customize ["modifyvm", :id, "--memory", "512"]
|
||||
config.vm.network :hostonly, "33.33.33.10"
|
||||
|
||||
# enable this to see the GUI if vagrant cannot connect
|
||||
#config.vm.boot_mode = :gui
|
||||
|
||||
config.vm.provision :puppet do |puppet|
|
||||
puppet.manifests_path = "puppet/manifests"
|
||||
puppet.manifest_file = "init.pp"
|
||||
# enable this to see verbose and debug puppet output
|
||||
#puppet.options = "--verbose --debug"
|
||||
end
|
||||
Vagrant::Config.run do |config|
|
||||
config.vm.share_folder("etherpad-code", "/home/etherpad/dev/etherpad", "../", :nfs => true)
|
||||
end
|
||||
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue