본문 바로가기

분류 전체보기

(334)
no configuration file provided: not found(docker) docker 실행시 상단과 같은 에러가 떴을 경우 실행시키고 있는 파일의 위치(터미널)를 확인 해볼 것.
github user.name user.email변경 https://www.lainyzine.com/ko/article/how-to-change-the-github-account-used-by-the-development-environment/ 개발 환경에서 사용중인 GitHub 계정 변경하는 방법 GitHub 계정을 변경하거나, 특정 저장소에서는 다른 GitHub 계정을 사용하고 싶을 수 있습니다. 이 글에서는 GitHub 계정을 변경할 때 필요한 로컬 개발 환경 설정 방법에 대해 알아봅니다. www.lainyzine.com :참고 url remote: Permission to xxx.git. - 키체인 비번 입력시 mac북 비번입력 https://somjang.tistory.com/entry/GitHub-The-requested-URL-returned-..
nodemailer 에러 : invalid login: application-specific password required. learn more at https://stackoverflow.com/questions/45478293/username-and-password-not-accepted-when-using-nodemailer 보안=> 앱 비밀번호 설정
구글 키워드 플래너 무료로 사용하기 사실 해당 내용은 실제적으로 비용이 발생하는지 테스트 해보지는 않았지만, 구글링 한 결과 구글 ads 결제 후 일시정지 한 후 키워드 플래너를 사용할수 있는 것 같아 기록상 몇 자 적어 남긴다. 1. 구글 ads가입 => 일일 광고비용 최소로 설정 (카드 정보 등록) 2. 구글 ads 상단의 타이틀 하단 버튼을 누르면 '일시중지'라는 버튼이 나오는데 해당 버튼을 클릭하여 일시정지 시킨다. 참고: https://support.google.com/google-ads/answer/2404259 캠페인 사용 설정, 일시중지 또는 삭제하기 - Google Ads 고객센터 도움이 되었나요? 어떻게 하면 개선할 수 있을까요? 예아니요 support.google.com 3.구글키워드플래너 사용 참고: https://a..
[0]password authentication failed for user nestjs docker docker 동일 컨테이너 사용시 출현하는 nestjs error 기존 사용하는 컨테이너 볼륨이 있는지 확인(docker volume ls)후 있다면 기존 컨테이너를 실행시키고 있던 터미널에서 내려주고 (docker-compose down) 현 컨테이너를 실행하면 됌(docker-compose up)
[0][sql]스파르타sql 정리 //field : table 의 특정 분류값 //1주차 정리 1.show tables (cmd + enter : 실행) 로 필드 값 확인 2.select * from TableName 3. where fieldName = '조건' and/or '조건' *조건 : (문자열이 아닐경우 table이나 field로 인식함) *사칙연산 조건 : != (제외하고) *범위 조건 : between DATE and DATE *포함 조건 : where fieldName in (숫자들) *패턴 조건: -특정string을 포함하는 => where fieldName like '%특정string%' -규칙적인 string을 포함하는 =>ex) where fieldName = '김**' * 몇줄만 보고 싶을때 : limit *중복..
[0]WARNING: expo-cli has not yet been tested against Node.js v18.12.1. WARNING: expo-cli has not yet been tested against Node.js v18.12.1. If you encounter any issues, please report them to https://github.com/expo/expo-cli/issues expo-cli supports following Node.js versions: * >=12.13.0 =16.0.0 node 버전이 안맞아서 생기는 문제 node 삭제 후 16-17version으로 재설치 node 삭제 참고 : https://velog.io/@hrzo1617/Mac-node-npm-%EC%82%AD%EC%A0%9C-%EB%B0%8F-%EC%9E%AC%EC%84%A4%EC%B9%98 [Mac] - node,..
[0]the object notation for `createslice.extrareducers` is deprecated, and will be removed in rtk 2.0. please use the 'builder callback the object notation for `createslice.extrareducers` is deprecated, and will be removed in rtk 2.0. please use the 'builder callback, addcase cannot be called with two reducers for the same action type 와 같은 리덕스툴킷 에러가 뜨면 시도해봐야 할것 : extraReducer의 구조가 변경돼어 생기는 에러 인 것 같아, docs를 뒤져본 결과 하단과 같이 구조를 변경하면 제대로 작동하였다. //before extraReducer:{ // [getAllPosting.fulfilled]:(state,action) =>{ // state.status = ..