Modify procfile instead of package.json for --inspect

This commit is contained in:
=
2020-09-14 07:17:37 -07:00
parent 8018caab47
commit d7a680a3ac
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
web: node ./index.js
web: node --inspect ./index.js

View File

@@ -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",