fix mkdocs references

This commit is contained in:
Kyle Robbertze 2020-05-19 23:10:56 +02:00
parent d7ee6a6f4c
commit 9467415b27
6 changed files with 21 additions and 58 deletions

6
Vagrantfile vendored
View file

@ -10,8 +10,6 @@ Vagrant.configure("2") do |config|
# liquidsoap input harbors for instreaming (ie. /master)
config.vm.network "forwarded_port", guest: 8001, host:8001
config.vm.network "forwarded_port", guest: 8002, host:8002
# mkdocs documentation
# config.vm.network "forwarded_port", guest: 8888, host:8888
# make sure we are using nfs (doesn't work out of the box with debian)
nfsPath = "."
@ -69,10 +67,6 @@ Vagrant.configure("2") do |config|
# Provision LibreTime
config.vm.provision "install", type: "shell", inline: "cd /vagrant; ./install %s --web-port=8080" % installer_args
# Provision docs
# config.vm.provision "install-mkdocs", type: "shell", path: "docs/scripts/install.sh"
# config.vm.provision "start-mkdocs", type: "shell", path: "docs/scripts/serve.sh"
end
end