Skip to content

Latest commit

 

History

History
99 lines (65 loc) · 1.78 KB

README.md

File metadata and controls

99 lines (65 loc) · 1.78 KB

frontend-juepark

Create-React-App AWS

실행하기

  • Mac OS 기준

[clone 전 환경설정]

1.node 설치

  • 버전확인 명령어
node --version
  • 설치되어있지 않다면 설치한다.(플랫폼에 맞게 설치)

  • node를 설치하면 npm을 사용할 수 있습니다.
    npm: node package manager

  1. Homebrew 설치되어있지 않다면 Homebrew 먼저 설치
  • 설치확인 명령어
brew help
  • 명령어 안내가 나오면 설치 완료.
  1. Git 설치
  • 설치 명령어
brew install git
  • 설치확인 명령어
git --version

[로컬에서 설치 및 실행]

  1. git clone으로 저장소를 받아옵니다.
git clone <https://github.com/42seoul-gifty/frontend-juepark.git>
  1. 저장소가 저장된 폴더로 이동합니다.
cd frontend-juepark
  1. 애플리케이션 종속성을 설치 및 웹앱을 실행합니다.
npm install
npm start