gumpcha / good-reads-clone

Nomad Coders Online Hackerthon 과제
https://hackathon.nomadcoders.co/
0 stars 0 forks source link

Heroku에 express app 배포하기 #12

Open gumpcha opened 4 years ago

gumpcha commented 4 years ago

사전 준비

express app 배포하기

  1. mkdir good-reads-clone-heroku && cd $_
  2. nvm install 12
  3. npm install -g npm@latest
  4. npx express-generator --git
  5. heroku login
  6. heroku create
  7. git init
  8. git add .
  9. git commit -m 'initial commit'
  10. git push heroku master
  11. heroku open
gumpcha commented 4 years ago

https://good-reads-clone-heroku.herokuapp.com/ 테스트로 배포한 내용입니다.(언제든 지워질 수 있음)

Express