Showing posts with label Rails. Show all posts
Showing posts with label Rails. Show all posts

06 June, 2015

Deploying Ruby on Rails

So I succeded in deploying my Ruby on Rails App to Heroku. That part was easy to understand. But what then?

One.com settings


The answer is: DNS administration.

Let a subdomain point to the app URL on Heroku via CNAME.

I guess that's the missing link. BTW any sky solution would work in a similar way.

25 April, 2015

Install Ruby on Rails on Linux Mint

Reading article i WebDesigner /233:70 on Ruby on Rails. Running RoR on Linux Lime is not that straightforeward. Here's what I did:

Bundle install could not install sqlite3. Solution:

# apt-get install libsqlite3-dev
# bundle install

Tried to start a server. But got an error.

# sudo gem install therubyracer
# sudo apt-get install nodejs

Then the server worked.