How to publish a Ruby on Rails Project to Heroku
2 min readNov 20, 2017
I write this article to show the steps can be used to deploy your rails application into server. For this I am using Heroku.
What is Heroku ?
Heroku is a cloud platform that lets companies build, deliver, monitor and scale apps.
Check the above link to see more about this platform.
- Create a Heroku account
Use the following link to sign up
2. Login to your account through terminal
heroku login
3. Create the project on Heroku
heroku create app-name
4. Push the Project to Heroku
git push heroku master
5. Add the database
To add the database please follow the following steps mention in the link
All Done !
notes
If you want to see all the apps you have created
heroku apps
If you need to delete any app created
heroky apps:destroy [name] --confirm [retype_name]