From d852db439ef979767d2c2c9d58fcf177622796eb Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Fri, 10 Mar 2017 12:31:19 +0100 Subject: [PATCH] Add more vagrant docs Complete with links to the usual tooling needed, some info on vagrant ssh and a small troubleshooting section. --- docs/index.md | 12 +++++++----- mkdocs.yml | 1 + 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/index.md b/docs/index.md index 20c4c639e..e2b68d733 100644 --- a/docs/index.md +++ b/docs/index.md @@ -17,11 +17,13 @@ Getting Started The easiest way to check out LibreTime for yourself is to run a local instance in a virtual machine. Assuming you already have Git, Vagrant and Virtualbox installed, just run: - :::bash - git clone https://github.com/libretime/libretime.git - cd libretime - vagrant up +```bash +git clone https://github.com/libretime/libretime.git +cd libretime +vagrant up +``` If everything works out, you will find LibreTime on [port 9080](http://localhost:9080), icecast on [port 8000](http://localhost:8000) and the docs on [port 8888](http://localhost:8888). -Of course, this setup isn't appropriate for production use. For that, check out our [installation instructions](install.md). +Of course, this setup isn't appropriate for production use. For that, check out our [installation instructions](install.md). More information on the vagrant setup are in [the docs](vagrant.md). + diff --git a/mkdocs.yml b/mkdocs.yml index 8b7c3f4b3..781f4242f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -70,6 +70,7 @@ pages: - 'Icecast statistics with Piwik': manual/icecast-statistics-with-piwik/index.md - 'Development': - 'Testing': testing.md + - 'Vagrant': vagrant.md - 'Documentation': documentation.md - 'Appendix': - 'Expert install': manual/expert-install/index.md