[Vue.js] vue NodeJS setting (NVM)

NVM (Node Version Manager) 이 프로젝트에 쓰일 서버를 실행하려면 Node.js 버전을 10.16번대로 맞춰야 하므로, NVM (Node Version Manager)를 설치해서 사용하려고 한다. NVM은 프로젝트마다 Node.js버전이 다양할 때, Node.js 버전을 쉽게 바꿀...

[Vue.js] vue MongoDB Cloud setting

MongoDB Cloud 회원의 정보를 저장할 데이터베이스로 MongoDB를 사용한다. MongoDB를 직접설치 하는 대신 MongoDB Cloud를 이용한다. https://www.mongodb.com/cloud 회원가입 후 무료로 제공해주는 500MB만 사용한다. Network Access MongoDB Cloud랑 통신을 할 수 있게...

[git] Git ignore

.gitignore 설명 git이 tracking하면 안되는 파일이나 폴더를 .gitignore 파일을 생성해 기록한다. .gitignore 실습 현재 아래와 같이 폴더들과 파일들이 있다 log1.log 파일은 git이 tracking 안 했으면 한다. 그럼 .gitigore 파일 생성...

[git] Git status

git status 설명 git status를 통해 git의 상태를 체크한다. git status (git status –long) a2문구를 a.txt에 추가하고 f.txt 파일을 새로 생성한다. echo a2 >> a.txt echo f1 >> f.txt git...

[git] Git Add

1. git add 설명 2. git add 실습 3. git rm –cached 4. git add -A 와 git add . 차이 git add 설명 git에 해당 파일의 file history를 추가하는...