Skip to content

Latest commit

 

History

History
59 lines (52 loc) · 884 Bytes

README.md

File metadata and controls

59 lines (52 loc) · 884 Bytes

Udemy Bootcamp Project

Did this Project, which was part of a Course, (Full Stack Web Development Course on Udemy)

Commands for running App on Local machine

node index.js

OR

nodemon 

Deployment commands for Heroku

Ensure you have Git & Heroku CLI
First, go to folder location

cd /d folderPath

Don't forget to create .gitignore file

git init
git add .
git commit -m "commitMessageHere"
heroku login
heroku create
heroku git:remote -a herokuAppName

We'll get herokuAppName after creating heroku App

git push heroku master

Pushing changes to Heroku App

git add .
git commit -m "commitMessageHere"
heroku login
git push heroku master