[Pangtudy-web] Web Deployment to EC2

EC2 인스턴스에 웹 배포

환경 세팅 과정

자바 설치

java -version
> Command 'java' not found, but can be installed with:
sudo apt install default-jre

깃 레포지토리 설치

sudo mkdir app
sudo mkdir app/git

깃 계정 설정

git config --global user.name "wch18735"
git config --global user.email "wch18735@naver.com"

깃 레포지토리 Clone (관리자 권한으로)

sudo git clone repo-url

npm 설치

sudo install npm

Vue 설치

sudo npm install vue

Vue CLI 설치 (3.x Version)

npm install @vue/cli -g

Tips

  • root login
  • note references
  • do not use backslash for Linux system

Questions

  • Jenkins 랑 Nginx 랑 같이 돌아갈 수 있나? A: Maybe…

References

Updated:

Leave a comment