Tag Archives: windows react 개발환경

[Setting | Windows] ReactJS 개발환경 설정

Windows 에서 ReactJS 개발환경을 설치하는 방법을 정리한다.


작성일 : 2022-06-15
NodeJS : v16.15.0

1> 프로젝트 생성

npx create-react-app frontend

2> package.json 에 정보 입력

{
  "name": "frontend",
  "version": "0.1.0",
  "description": "Opendocs Frontend Client.",
  "author": "Opendocs",

3> GitLab에 프로젝트를 생성하고 Commit & Push

# 초기화
git reset --hard
git clean -df
git remote remove origin
#.git 폴더 삭제
git remote -v

# GitLab에 Push
git init --initial-branch=main
git remote add origin http://[gitlab_url]/[group_name]/[project_name].git
git add .
git commit -m "Initial commit"
git pull origin main --allow-unrelated-histories
git push -u origin main

# 참고
## ! [remote rejected] main -> main (pre-receive hook declined) 오류발생시
> GitLab > Settings > Repository > Protected Branchs 
> Developers+Maintainers 로변경
## SSL인증서 에러시
fatal: unable to access 'http://[gitlab_url]/[group_name]/[project_name].git/': SSL certificate problem: unable to get local issuer certificate
PS C:\_Work\source\frontend> git config --global http.sslVerify false