Heroku
heroku create
# Deploy to Heroku server
git push heroku master
# Database on Heroku
heroku addons:add mongohq
# or
heroku addons:add mongolab
# OPTIONAL:
# Rename if you need to
heroku app:rename <newname>
# Open Link in browser
heroku open
Note:
- If you are working from a different machine and get
heroku does not appear to be a remote repository
message, be sure to rungit remote add heroku git@heroku.com:appname.git
. - For setting up Google Authentication for Heroku and local dev, read the FAQ section