reading-notes

Read: 05 - Heroku Deployment Summary:

// Initialize a Git repository git init

// Point remote address towards your Heroku app heroku git:remote -a your-app-name

// Add all files in Git git add .

// Commit all files git commit -am “Initial commit”

// Deploy all files on Heroku git push heroku master