commit f11156ba54b94803758a466b3321dbda66591ad3
parent 42144a6d2c38f209098990776e1711046bf122b5
Author: Demonstrandum <moi@knutsen.co>
Date: Tue, 17 Mar 2020 20:45:10 +0000
Scale correctly...
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Procfile b/Procfile
@@ -1,2 +1,2 @@
web: echo "No web-service here, please and thank you."
-service: yarn start
+worker: yarn start
diff --git a/package.json b/package.json
@@ -20,7 +20,7 @@
"reset": "rm -rf ./build ./node_modules ./yarn.lock ./packages-lock.json",
"start": "node .",
"quick": ". ./build.sh && yarn run start",
- "deploy-scale": "heroku ps:scale service=1 -a simp-o-matic",
+ "deploy-scale": "heroku scale web=0 worker=1 -a simp-o-matic",
"deploy-restart": "heroku restart -a simp-o-matic"
},
"homepage": "https://github.com/Demonstrandum/simpomatic",