Heroku
heroku create
# Deploy to Heroku server
git push heroku master
# Database on Heroku
heroku addons:create mongohq
# or
heroku addons:create mongolab
# OPTIONAL:
# Rename if you need to
heroku apps: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 [email protected]:appname.git
. - For setting up Google Authentication for Heroku and local dev, read the FAQ section