diff --git a/.gitignore b/.gitignore index c355967..1dddcf2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ .idea/ +.vagrant/ lib/ project/project project/target target/ **/application.conf +*.log diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..7ff69fd --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,14 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure(2) do |config| + # For a complete reference, please see the online documentation at + # https://docs.vagrantup.com. + config.vm.box = "ubuntu/xenial64" + config.vm.provision "shell", inline: <<-SHELL + echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list + sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823 + sudo apt-get update + sudo apt-get install -y openjdk-8-jre-headless sbt + SHELL +end