Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
osoohynn authored Aug 26, 2024
1 parent 64dffcd commit a1406ca
Showing 1 changed file with 79 additions and 1 deletion.
80 changes: 79 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```


## 시작하기

Expand Down

0 comments on commit a1406ca

Please sign in to comment.