Git based wiki inspired by Gollum
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
381B

  1. VAGRANTFILE_API_VERSION = "2"
  2. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  3. config.vm.box = "ubuntu/trusty64"
  4. config.vm.provider :virtualbox do |vb|
  5. vb.name = "realms-wiki"
  6. vb.memory = 512
  7. vb.cpus = 2
  8. end
  9. config.vm.provision "shell", path: "install.sh", privileged: false
  10. end
  11. Vagrant::Config.run do |config|
  12. config.vm.forward_port 5000, 5000
  13. end