Run a local rails app with nothing but Nanobox.
- Clone this repo
git clone https://github.com/nanobox-quickstarts/nanobox-rails.git
- Change into the directory
cd nanobox-rails
- Add a local DNS record
nanobox dns add local rails.local
- Create the database
nanobox run rake db:create
- Run the app
nanobox run rails s
Now you can visit your app at rails.dev:3000
With Nanobox, you don't have to have anything installed on your machine to run app specific commands. To open a nanobox console type nanobox run
into your console and hit enter.
Now you can run commands like ruby -v
and gem list
to check the ruby version and see a list of installed gems respectively.
For more details about running rails apps with nanobox visit guides.nanobox.io/ruby/rails/