From a1406caa443237c6ee4f7a1bf5d0920efeb550d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=88=98=ED=98=84?= <164843727+su080915@users.noreply.github.com> Date: Mon, 26 Aug 2024 14:10:57 +0900 Subject: [PATCH] Update README.md --- README.md | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 79 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5546e5c..c37c4a0 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,85 @@ ### 사전 준비 사항 -> **여러분의 제품/서비스를 Microsoft 애저 클라우드에 배포하기 위해 사전에 필요한 준비 사항들을 적어주세요.** +## 환경 설정 - 1 + +**사전 준비 사항 목록** + +- GitHub Account +- GitHub CLI +- Azure CLI +- Azure Developer CLI +- Azure Account +- Azure Resource Group +- java 17 +- intelliJ + +## 환경 설정 - 2 + +0. 환경 설정 + +0-1. 자바 & 인텔리제이 설치 + +0-1-1. window에서 설치 + +https://nazzang19.tistory.com/127 + +https://velog.io/@bi-sz/IntelliJ-환경-구성하기 + +0-1-2. mac에서 설치 + +https://gymdev.tistory.com/72 + +https://how-can-i.tistory.com/127 + +0-2. brew 설치 (mac) + +아래 명령어를 터미널에 입력합니다. + +``` +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +``` + +0-3. AZD, AZ, GH 설치 + +아래 명령어 중 자신의 컴퓨터에 맞는 명령어를 터미널에 입력합니다. + +0-3-1. AZD CLI + +``` +# 맥 +brew tap azure/azd && brew install azd +``` + +``` +# 윈도우 +winget install microsoft.azd +``` + +0-3-2. AZ CLI + +``` +# 맥 +brew update && brew install azure-cli +``` + +``` +# 윈도우 +$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'; Remove-Item .\AzureCLI.msi +``` + +0-3-3. GH CLI + +``` +# 맥 +brew install gh +``` + +``` +# 윈도우 +winget install gh +``` + ## 시작하기