This commit is contained in:
yashrajverma 2021-06-07 15:39:43 +05:30
parent c331c2ddc3
commit f0bc9eed4b
3 changed files with 4 additions and 7 deletions

View File

@ -1,4 +0,0 @@
option_settings:
- namespace: aws:elasticbeanstalk:container:nodejs
option_name: NodeCommand
value: "npm start"

1
ProcFile Normal file
View File

@ -0,0 +1 @@
web: npm start

View File

@ -6,9 +6,9 @@
"scripts": {
"start:dev": "nodemon app.js",
"start": "node app.js",
"test": "mocha ||true"
"test": "mocha ||true",
"deploy": "npm run build && npm run start"
},
"author": "",
"license": "ISC",
"dependencies": {
@ -45,4 +45,4 @@
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}
}