[Rookies 개발 2기] React + SpringBoot + MySql CI/CD (2)
·
SK 루키즈/Cloud
백엔드 시작이번엔 백엔드 파트이다. 설정등 많은 부분이 프런트와 비슷한 결이므로 빠르게 진행하겠다.작업 순서는 아래와 같다. Spring의 보안 설정 후GitAction Security 설정EC2 업로드 및 배포SecuritySpring 설정먼저 `application.properties` 파일로 가서 맨 아래에 ip주소를 변수로 만들어 주자. #Custom settings (protocol, domain, port)app.release_ip=http://내 ip주소app.release_domain=http://www.example.comapp.dev_ip=http://localhost:3000 여기서 제일 중요한건 `release_ip`이며 나머지는 추후를 위해 생성해 둔 것이다. 그렇다면 이 변수를 ..
[Rookies 개발 2기] React + SpringBoot + MySql CI/CD (1)
·
SK 루키즈/Cloud
앞서지난 시간 배운 내용을 토대로 React와 SpringBoot 그리고 MySql까지 CI/CD로 배포해 보겠다.먼저 진행한 Github 주소이다.BackEnd: https://github.com/iseungho/project-cicd-backend GitHub - iseungho/project-cicd-backendContribute to iseungho/project-cicd-backend development by creating an account on GitHub.github.comFrontEnd: https://github.com/iseungho/project-cicd-frontend GitHub - iseungho/project-cicd-frontendContribute to iseungh..