Heroku Node.js security update
1. Heroku 연결하기 ( with Heroku CLI )
설치가 되어 있지 않거나 PC에서 삭제가 된 경우는 아래 CLI를 설치해야 한다.
https://devcenter.heroku.com/articles/getting-started-with-nodejs#set-up
설치가 완료되면, 윈도우 명령어 창에서
$ heroku login
을 실행하고, ID/PWD를 입력해서 로그인을 한다.
2. 윈도우로 APP 가져오기
$ heroku git:clone -a [APP-NAME]
$ cd [APP-NAME]
* [APP-NAME]은 Heroku 대시보드에서 해당 이름을 확인 필요
3. 윈도우에서 파일 수정하기 : package.json
참조 : Specifying a Node.js Version
4. Heroku로 Deploy하기
$ git status ## option
$ git add .
$ git status ## option
$ git commit -m "Upgrade Node.js version"
$ git push heroku master
'Cloud - Google,AWS' 카테고리의 다른 글
Amazon, EC2(Ubuntu)에 java 설치하기 (0) | 2017.02.09 |
---|---|
아마존, EC2 인스턴스에 XShell 접속하기 (0) | 2017.02.09 |
xftp로 구글 클라우드 연결하기 (2) | 2016.06.27 |