Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 413 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 413 Bytes

Crash Course: Deploying

Template code for the deploying apps to the cloud crash course.

Initial Setup

  • rmdir .git

You need to remvoe the git directory in this repository, because Heroku will require our entire node project to have its own git repo.

  • cd node && git init && git add -A && git commit -m "Initial commit"

Set up a repository inside the node repo. And then, follow the README.md there.