heroku + Spring Web

Kyu·2021년 3월 2일
0
  1. 헤로쿠 가입을 한다
  2. create new app 을 통해 새로운 app을 만든다
  3. https://devcenter.heroku.com/articles/deploying-spring-boot-apps-to-heroku 을 통해서 Spring Boot Application을 heroku로 배포한다. -> 아래 4번부터 내용ㅣ.
  4. 터미널에서 heroku 명령어를 통해 로그인한다 heroku login
  5. Spring Boot CLI를 설치한다
  6. spring init --dependencies=web demo demo라는 새로운 어플리케이션을 만든다?
  7. demo 파일을 github과 연동한다
    7-1. git init, git add . , git commit -m "first iniit"
    7-2. github 새로운 repo 생성
    7-3. git remote add origin <repo주소>
    7-4. git push -u origin master
  8. heroku create 명령어를 통해 remote repo가 추가된다.
  9. git -remote -v 하면 확인가능
  10. git push heroku main
  11. heroku open 완료
profile
TIL 남기는 공간입니다

0개의 댓글