├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile └── vagrant_provision.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /.vagrant 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lau/vagrant_elixir/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lau/vagrant_elixir/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lau/vagrant_elixir/HEAD/Vagrantfile -------------------------------------------------------------------------------- /vagrant_provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lau/vagrant_elixir/HEAD/vagrant_provision.sh --------------------------------------------------------------------------------