Landrush
If you’re a full-stack developer or otherwise involved in multi-tiered application development, you’ll often find your applications littered with various subdomains. For example api, kb, mail, etc. These can be incredibly cumbersome to setup locally when developing, and Landrush is the answer.
Once installed, you’ll be able to configure countless subdomains with your Vagrantfile, and minimize the headache of getting to work!
vagrant plugin install landrush
Ansible
The ansible plugin allows you to run playbooks from Vagrant, completely optimizing your ability to deploy development machines with reusable playbooks and/or roles on your workstation.
# # Run Ansible from the Vagrant Host # config.vm.provision "ansible" do |ansible| ansible.playbook = "playbook.yml" end
You can find more information about the plugin at the official Hashicorp documentation.
0 Comments