Development: Vagrant
Vladimir Avgustov edited this page 2018-06-29 20:37:57 +03:00
  1. Launch virtual machine:
vagrant up
  1. SSH into the machine:
vagrant ssh
  1. Go to the project directory:
cd /vagrant
  1. Launch Rails server:
./bin/rails s

To launch Webpack dev server:

./bin/webpack-dev-server

Visit http://localhost:3000/ to view the project!