Vagrant
Install Vagrant and setup a virtual machine with Linux
Vagrant is compatible for Debian and Ubuntu.
Browser configuration
To access the application through the browser at localhost:3000 we must forward a port and run the rails server with a binding option:
Port forwarding
Open the Vagrant configuration file:
nano VagranfileFind this line:
# config.vm.network "forwarded_port", guest: 80, host: 8080And change it for this configuration:
config.vm.network "forwarded_port", guest: 3000, host: 3000Reload your virtual machine:
vagrant reloadRunning the rails server
In your virtual machine, run the application server, binding to your local ip address:
bin/rails s -b 0.0.0.0Now you should be able to see the application running in your browser at url localhost:3000! 🎉
Last updated