티스토리 뷰
728x90
SMALL
헤로쿠 배포 하는 법(nodejs)
heroku login
git clone <클론할 git 주소>
cd <방금 받아온 git 폴더>
heroku create -- heroku에서 앱을 만든다. git remote(heroku)도 만들어지고 로컬 git 저장소와 연결
git push heroku login -- 배포
heroku ps:scale web=1 -- 앱의 하나 이상의 인스턴스가 실행중인지 확인
heroku open -- 앱 열기(바로가기)
https://devcenter.heroku.com/articles/getting-started-with-nodejs
url 변경
heroku apps:rename newname -- 앱 이름(url) 변경
로컬 Heroku 리모컨이 자동으로 업데이트 되지만
저장소의 다른 인스턴스는 원래의 세부 정보를 수동으로 업데이트 해야 돼
저장소 삭제하고 다시 만들어
git remote rm heroku
heroku git:remote -a newname
https://devcenter.heroku.com/articles/renaming-apps
728x90
LIST
'우테캠' 카테고리의 다른 글
개발시 필요한 함수들 (0) | 2021.07.24 |
---|---|
우아한테크캠프 3주차 후기 (0) | 2021.07.24 |
우아한테크캠프 2주차 후기 (0) | 2021.07.17 |
1주차 정규식 유효성 검사 (0) | 2021.07.10 |
우아한테크캠프 1주차 후기 (0) | 2021.07.10 |
댓글
공지사항