For the default setup you can click the heroku button to get Refocus running! If you want more control over your deployment than follow the steps below.
heroku create
to create Heroku projectPGSSLMODE=require
to make all db data go over sslheroku config:set NODE_ENV=test
heroku addons:create heroku-postgresql:hobby-dev
to create a dev dbgit push heroku <your branch>:master
which will push to Heroku and start up a dyno.heroku open
and view the app running in Herokuheroku run bash
then run mocha
to execute the test suiteGOOGLE_ANALYTICS_ID
.DEBUG_CLOCK
, DEBUG_RELEASE
, DEBUG_WEB
, DEBUG_WORKER
. (The *
character may be used as a wildcard.)heroku restart
, to restart the appheroku logs --tail
to see the heroku logs as they update