nicegyunii / study

0 stars 0 forks source link

개발환경 세팅 #1

Open nicegyunii opened 1 month ago

nicegyunii commented 1 month ago

1. jdk install

  1. aaa

2. maven install

https://maven.apache.org/download.cgi

3. nodejs install

https://nodejs.org/en/download/package-manager

4. 環境変数追加

C:\devtools\maven-3.9.8\bin
C:\devtools\node-v20.15.1

5. GIT install

  https://gitforwindows.org/

$ git config --global user.name "KwangKyun Oh"
$ git config --global user.email "ifu1me2@gmail.com"

リモートブランチ削除を自動反映する設定

git config --global fetch.prune true

改行コードをLFに統一する設定

git config --global core.autocrlf input

6. vscode instll and setting

Dockerにアタッチしたときのデフォルトシェルをbashに変更します。 設定を開き「Docker > Commands: Attach」のsettings.jsonで編集を選択する エディターでsettings.jsonがひらくので、次のように書き換える docker attach (変更前)

"docker.commands.attach":"${containerCommand} exec -it ${containerId} ${shellCommand}",

(変更後)

"docker.commands.attach":"${containerCommand} exec -it ${containerId} bash",

image

image

Thunder Clientの設定 Thunder ClientでRedirect(HTTP Status 302)を受け取ったときに リダイレクトのリクエストが正しく処理できないため、下記のチェックを外してください。 thunder redirect image

Dockerエンジンインストール

nicegyunii commented 1 month ago

docker commands

docker-compose -f docker-compose.yml stop