Connect to DB through Vagrant using RubyMine
问题 I just started working on a ruby project which is set up through Vagrant. I've successfully gotten a remote interpreter working but I'm having trouble connecting to databases. Here's my Vagrantfile : # This Vagrantfile is for development use only. VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "markusproject/ubuntu" # Allow instance to see project folder. # Warning: This may cause problems with your Vagrant box! # Enable at your own risk.