From d7a680a3aceaf08760aefbda01b155cd1f7606ac Mon Sep 17 00:00:00 2001 From: = Date: Mon, 14 Sep 2020 07:17:37 -0700 Subject: [PATCH] Modify procfile instead of package.json for --inspect --- Procfile | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Procfile b/Procfile index 65423b4..abdde38 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: node ./index.js +web: node --inspect ./index.js diff --git a/package.json b/package.json index d591eb5..eb716a4 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "start": "node --inspect ./index.js", + "start": "node ./index.js", "start-mon": "nodemon ./index.js", "migrate": "cd app && npx sequelize db:migrate", "seed": "cd app && npx sequelize db:seed:all",