Git based wiki inspired by Gollum
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

18 lignes
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