From 5de5c07cddeb2d5d7d14c13b425ba7a1efd759fd Mon Sep 17 00:00:00 2001 From: Herb Caudill Date: Tue, 12 Nov 2019 13:42:16 +0100 Subject: [PATCH] README.md: update --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/README.md b/README.md index 2aeb0ff..d4e0a4b 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,40 @@ You can visit that address with a web browser to confirm that it's active. If it ### Deploying with Heroku +This app is intended to be deployable to Heroku out of the box. By its design it should only ever +run with a single dyno. + ```bash heroku create git push heroku master ``` + +You should see something like this: + +```bash +↯ heroku create +Creating app... done, ⬢ limitless-wave-17321 +https://limitless-wave-17326.herokuapp.com/ | https://git.heroku.com/limitless-wave-17326.git + + +↯ git push heroku master +Counting objects: 3, done. +Delta compression using up to 8 threads. +Compressing objects: 100% (3/3), done. +Writing objects: 100% (3/3), 744 bytes | 186.00 KiB/s, done. +Total 3 (delta 0), reused 0 (delta 0) +remote: Compressing source files... done. +remote: Building source: +remote: +remote: -----> Node.js app detected +remote: + +... + +remote: -----> Launching... +remote: Released v4 +remote: https://limitless-wave-17321.herokuapp.com/ deployed to Heroku +remote:remote: Verifying deploy... done. +To https://git.heroku.com/limitless-wave-17321.git + 4b72546..60f08c6 master -> master +```