11- Specify the version of node on package.json
2 "engines": {
3 "node": "14.x"
4 },
5npm install
6heroku local web
7 Your app should now be running on http://localhost:5000/.
8
9echo "/node_modules
10
11npm-debug.log
12
13.DS_Store
14
15/*.env" > .gitignore
16
17*/
18git add .
19git commit -m "Added a Procfile."
20heroku login
21heroku create
22git push heroku main
23
24
25
26