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
jonadan0 authored Aug 26, 2024
1 parent d84ed31 commit cec5b3d
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,5 +137,82 @@ cd $frontend
아래 명령어를 실행시켜 GitHub Actions 워크플로우를 실행시킬 수 있는 환경을 설정합니다.
azd pipeline config
설정 마지막에 Would you like to commit and push your local changes to start the configured CI pipeline? 라는 질문이 나오면 n를 선택하고 종료합니다.
mac 개발 환경 설정
1. Visual Studio Code 설치
VS Code 공식 사이트에서 macOS용 버전을 다운로드하고 설치합니다.
2. GitHub 설정
GitHub 계정 생성

GitHub 공식 사이트에서 계정을 생성합니다.
Homebrew 설치 (GitHub CLI 설치를 위해 필요)

터미널을 열고 다음 명령어를 입력하여 Homebrew를 설치합니다:
bash
코드 복사
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
GitHub CLI 설치

Homebrew를 사용해 GitHub CLI를 설치합니다:
bash
코드 복사
brew install gh
설치 후, gh auth login 명령어로 GitHub 계정에 로그인합니다.
3. Azure 설정
Azure 계정 생성
Azure 공식 사이트에서 계정을 생성합니다.
Azure CLI 설치
Homebrew를 사용해 Azure CLI를 설치합니다:
bash
코드 복사
brew install azure-cli
설치 후, az login 명령어를 사용하여 Azure 계정에 로그인합니다.
Azure Developer CLI 설치
Homebrew를 사용하여 Azure Developer CLI를 설치합니다:
bash
코드 복사
brew tap azure/azd
brew install azd
설치 후, azd auth login 명령어를 사용하여 Azure 계정에 로그인합니다.
Azure Resource Group 생성
Azure CLI를 사용하여 자원 그룹을 생성합니다:
bash
코드 복사
az group create --name myResourceGroup --location eastus
4. Node.js 설치 및 React.js, Express.js 설정
Node.js 설치
Homebrew를 사용하여 Node.js를 설치합니다:
bash
코드 복사
brew install node
React.js 프로젝트 생성
터미널에서 다음 명령어로 React.js 프로젝트를 생성합니다:
bash
코드 복사
npx create-react-app my-react-app
cd my-react-app
code .
Express.js 프로젝트 생성
터미널에서 다음 명령어로 Express.js 프로젝트를 생성합니다:
bash
코드 복사
npx express-generator my-express-app
cd my-express-app
npm install
code .
5. VS Code Extensions 설치
GitHub: GitHub와 통합된 기능을 제공하는 확장 프로그램입니다.
Azure Tools: Azure 리소스를 관리할 수 있는 확장 프로그램입니다.
ESLint: 코드 스타일을 검사하고 정리하는 도구입니다.
Prettier: 코드 포맷팅 도구입니다.
VS Code의 확장 프로그램 탭에서 위의 확장 프로그램들을 설치합니다.

6. Git 및 프로젝트 관리
GitHub에 프로젝트를 올리려면, 터미널에서 다음 명령어를 사용합니다:
bash
코드 복사
git init
git add .
git commit -m "Initial commit"
gh repo create <repository-name> --public --source=. --push
### 시작해봅시다

0 comments on commit cec5b3d

Please sign in to comment.