The fastest way to get LibreTime up and running in a way to hack on its source code or to test it locally.
Prerequisites: git, Vagrant, libvirt or VirturalBox
You will need to install VirtualBox and may want to consider installing vagrant-vbguest to update the guest extensions to match your host system on vagrant up.
vagrant plugin install vagrant-vbguest
Setting the libvirt provider up on (Ubuntu and Debian)[#Ubuntu and Debian] is straight forward, using the distribution provided packages. While on (Other Distributions)[#Other Distributions] it can be built from within vagrant.
If you try run a libvirt provided box after using a VirtualBox one, you will receive an error:
Error while activating network: Call to virNetworkCreate failed: internal error: Network is already in use by interface vboxnet0.
This is fixed by stopping virtualbox and re-creating the vagrant box:
sudo systemctl stop virtualbox vagrant destroy ubuntu-xenial vagrant up ubuntu-xenial --provider=libvirt
sudo apt install vagrant vagrant-libvirt libvirt-daemon-system vagrant-mutate libvirt-dev sudo usermod -a -G libvirt $USER # Reboot vagrant box add bento/ubuntu-16.04 --provider=virtualbox vagrant mutate bento/ubuntu-16.04 libvirt vagrant up ubuntu-xenial --provider=libvirt
You will need to install libvirt and vagrant-mutate and then run
vagrant-mutate
vagrant plugin install vagrant-libvirt sudo usermod -a -G libvirt $USER # Reboot vagrant plugin install vagrant-mutate vagrant box fetch bento/ubuntu-16.04 vagrant mutate bento/ubuntu-16.04 libvirt vagrant up ubuntu-xenial --provider=libvirt
To get started you clone the repo and run vagrant up. The command accepts a parameter to change the default provider if you have multiple installed. This can be done by appending --provider=virtualbox or --provider=libvirt as applicable.
vagrant up
--provider=virtualbox
--provider=libvirt
git clone https://github.com/libretime/libretime.git cd libretime vagrant up ubuntu-xenial
If everything works out, you will find LibreTime on port 8080, icecast on port 8000 and the docs on port 8888.
Once you reach the web setup GUI you can click through it using the default values. To connect to the vagrant machine you can run vagrant ssh ubuntu-xenial in the libretime directory.
vagrant ssh ubuntu-xenial
With the above instructions LibreTime is installed on Ubuntu Xenial Xerus. The Vagrant setup offers the option to choose a different operation system according to you needs.
vagrant up debian-buster
vagrant up debian-stretch
vagrant up ubuntu-bionic
vagrant up ubuntu-xenial
vagrant up centos
If anything fails during the initial provisioning step you can try running vagrant provision to re-run the installer.
vagrant provision
If you only want to re-run parts of the installer, use --provision-with $step. The supported steps are prepare, install, install-mkdocs and start-mkdocs.
--provision-with $step
prepare
install
install-mkdocs
start-mkdocs