Uses the old installer to get LibreTime installed quick and dirty on vagrant. It uses the `install -fIap` command that does a local install and points the apache config directly to the local working copy mounted in /vagrant. While we don't have fancy autoloading for libretime like the docs do, this way it's already easy to work against a local branch. I'm not sure if the `-I` arg to the installer also covers the python parts of libretime.
15 lines
437 B
Ruby
15 lines
437 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
config.vm.box = "ubuntu/trusty64"
|
|
|
|
config.vm.network "forwarded_port", guest: 80, host:8080
|
|
config.vm.network "forwarded_port", guest: 8888, host:8888
|
|
|
|
config.vm.provision "shell", inline: "cd /vagrant; ./install -fIap"
|
|
config.vm.provision "shell", path: "docs/scripts/install.sh"
|
|
config.vm.provision "shell", path: "docs/scripts/serve.sh"
|
|
|
|
end
|