This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## DEPLOY RAILS APP TO HEROKU ## | |
IN HEROKU => | |
# Create a free heroku account if you don't have one already | |
# pick app you want to deploy (it can't be that is on sql, has to be postgresql) OR create a new app | |
** if your app was created in sql, to change to postgres is a bit involved, get help ** | |
# create new app | |
# choose name for app | |
# install toolbelt (only need this once, if it is a new computer install again, there is a link on heroku to download) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GoDaddy Account > Domain Manager > DNS Management | |
# Domain Settings > Manage DNS > Records => | |
Add > | |
Host: * | |
Points to: appname.herokuapp.com | |
TTL: 1 hour | |
Add > | |
Host: appnamesecure | |
Points to: appname-2121.herokussl.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In GoDaddy => | |
Go to "Manage my Domains" | |
Next to your domain, click on the Settings Sprocket Drop down and select "Manage DNS" | |
At the bottom of the "Records" Section, click "ADD" | |
Type: A | |
Host: @ | |
Points to: 192.30.252.153 | |
* Leave TTL as is | |
Click "ADD" again to add another record: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Creating an app called my_great_app | |
rails new my_great_app -T -d postgresql --skip-turbolinks | |
cd my_great_app | |
git init | |
git add . | |
git commit -m "Initial commit. Rails boilerplate." | |
# Edit gemfile | |
# #Remove the reference to coffee-rails. |