일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 보안취약점
- table
- mssql
- 자바
- component
- Intellij
- sql
- javascript
- java
- restapi
- JS
- GIT
- 스프링부트
- 쿼리
- 컴포넌트
- 개발공부
- 자바스크립트
- springboot
- reactjs
- DATABASE
- 리액트
- EXTJS
- crud
- Spring
- 개발
- 데이터베이스
- Vue
- React
- jdk
- 스프링
- Today
- Total
목록heroku (2)
준준의 기록일지
Hi, Today we are going to talk about how to upload or set configuration of application.yml to Heroku. my application as backend(springboot) and frontend (vue.js) was working properly in local. But, I got into a trouble that when I deploy on Heroku my backend application. It kept occurring CORS Policy Problem on Network of Chrome DevTool. So, I tried to figure out Spring security to solve Cors po..
개요 Github에 프로젝트 연동하여 프로젝트를 진행중이다. github에 프로젝트를 연동한 뒤 작업을 하는 도중, heroku 계정 정보, Amazon S3에 필요한 계정 정보(access key, secret key)를 담은 application.yml이 github에 올라가 있는 것을 확인했다. 바로, gitignore 작업이 필요한 상황, 그렇지 않을 경우 계정정보를 전부 노출하여 엄청난 과금이 생길수도..! 해결방안 현재 git 관련 캐시를 제거해주고 다시 commit하면 간단하게 적용 완료! git rm -r --cached . git add . git commit -am "Remove ignored files" 출처: https://cppmaster.tistory.com/entry/Git에-..