티스토리 뷰

우테캠

1주차 배포 heroku

안양사람 2021. 7. 10. 00:28
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

 

Getting Started on Heroku with Node.js | Heroku Dev Center

This tutorial will have you deploying a Node.js app to Heroku in minutes. Hang on for a few more minutes to learn how to get the most out of the Heroku platform. In this step you’ll install the Heroku Command Line Interface (CLI). You use the CLI to mana

devcenter.heroku.com

 

url 변경

heroku apps:rename newname -- 앱 이름(url) 변경

 

로컬 Heroku 리모컨이 자동으로 업데이트 되지만

저장소의 다른 인스턴스는 원래의 세부 정보를 수동으로 업데이트 해야 돼

저장소 삭제하고 다시 만들어

git remote rm heroku

heroku git:remote -a newname

https://devcenter.heroku.com/articles/renaming-apps

 

Renaming Apps from the CLI | Heroku Dev Center

Last updated May 06, 2019 You can rename an app at any time with the heroku apps:rename command. For example, to rename an app named “oldname” to “newname”, run the heroku apps:rename command from your app’s Git repository: $ heroku apps:rename n

devcenter.heroku.com

 

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
댓글
공지사항