- 헤로쿠 가입을 한다
- create new app 을 통해 새로운 app을 만든다
- https://devcenter.heroku.com/articles/deploying-spring-boot-apps-to-heroku 을 통해서 Spring Boot Application을 heroku로 배포한다. -> 아래 4번부터 내용ㅣ.
- 터미널에서 heroku 명령어를 통해 로그인한다
heroku login
- Spring Boot CLI를 설치한다
spring init --dependencies=web demo
demo라는 새로운 어플리케이션을 만든다?
- 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
- heroku create 명령어를 통해 remote repo가 추가된다.
- git -remote -v 하면 확인가능
- git push heroku main
- heroku open 완료