본문 바로가기

전체 글

(125)
VSCode(or Cursor AI) 사용 시 NestJS 디버깅 설정하는 방법 이전에 VSCode nodejs 디버깅 방법을 올린적이 있지만 Cursor 셋팅 기념 다시 재업로드해본다.. 1. launch.json 파일 설정하기- Run and Debug에서 launch.json 파일을 신규 생성하거나 수정한다.- 환경 변수 값은 필요한 경우 설정// launch.json{ "version": "0.2.0", "configurations": [ { "type": "node", "request": "attach", "name": "Debug NestJS", "skipFiles": ["/**"] } ]} 2. package.json에서 스크립트 추가 - nestjs 커맨드를 통해 프로젝트를 신규 생성했을 때 기본 스크립트 명령어. 디..
Windows11 Ubuntu 설치 오류. WslRegisterDistribution failed with error: 0x800701bc https://learn.microsoft.com/ko-kr/windows/wsl/install-manual#step-4---download-the-linux-kernel-update-package 이전 버전 WSL의 수동 설치 단계wsl install 명령을 사용하지 않고 이전 버전의 Windows에 WSL을 수동으로 설치하는 방법에 대한 단계별 지침입니다.learn.microsoft.com 1. 기본 검색에서 '기능' 입력하여 windows 기능 켜기/끄기 실행에서 아래 항목들을 활성화 - Linux용 Windows 하위 시스템 - 가상 머신 플랫폼  2. Windows Powershell 관리자 권한으로 실행wsl.exe --install# orwsl.exe --update 3. 컴퓨터 재부팅 후 ..
docker postgresql 표준 시간대(timezone) 설정 방법 ** Ubuntu 표준 시간대 확인timedatectl  1. docker postgresql 접속 (나는 postgis 사용중)// docker exec -it [container name] /bin/bashdocker exec -it postgis /bin/bash// psql -U [username]psql -U postgres 2. postgresql 현재 timezone 확인show timezone; 3.   postgresql 타임존 설정 방법 1) docker run 할 때 환경변수로 타임존 설정 2) 특정 데이터베이스를 명령어를 통해 타임존 설정      ** SET timezone TO 'Asia/Seoul'; 명령어는 현재 세션에서만 유효하기 때문에 세션이 종료되면 설정이 초기화 된다...