로컬개발환경에서 프로젝트 실행

호밀빵 굽는 쿼카·2022년 2월 23일
0

NHN Cloud 인턴

목록 보기
19/48

메모장 내용을 저장해놓기 위한 용도입니다

로컬가상환경에서 프로젝트 실행 순서

  1. 우분투 가상환경 준비
  2. 회사 팀내 웹 프로젝트 git clone
  3. sudo apt install npm
  4. (client폴더안에서)npm install -> node_modules 다운로드
  5. vue.config.js ip 변경
    5+. package.json 에서 serve: npm-cli-serve serve --port 8080으로 변경
  6. npm run serve
  7. secrets.json 만들기
  8. (최상위폴더안에서)python manage.py runserver ip주소:8000 --settings=main.config.settings.debug
profile
열심히 굽고 있어요🍞

2개의 댓글

comment-user-thumbnail
2022년 3월 2일

리눅스에서 IP 찾기
curl ifconfig.me
ip addr | grep "inet "
ifconfig | grep "inet "
hostname -I

답글 달기
comment-user-thumbnail
2022년 4월 15일

5+. package.json 에서 serve: npm-cli-serve serve --port 8080으로 변경
=>node ./node_modules/@vue/cli-service/bin/vue-cli-service serve --port 8080
으로 변경함

답글 달기