융융이'Blog

리액트+FireBase 연동 디플로이(react & firebase deploy) 본문

2022이전/React

리액트+FireBase 연동 디플로이(react & firebase deploy)

바로퇴장 2020. 2. 15. 17:37

순서는 매우 간단하다.

1. react app을 만든다.

$ npm install -g create-react-app
$ create-react-app myapp
$ cd myapp
$ npm start
//프로젝트 배포형
$ npm run build

2. firebase cli를 설치한다.

$npm install -g firebase-tool

3. firebase 설정 및 배포를 해준다.(미리 firebase Console에 들어가 프로젝트를 만들고 cli에서 해당 프로젝트에서 배포를 하면된다.)

$firebase login
$firebase init
$firebase deploy

 

참고 : https://www.freecodecamp.org/news/react-and-firebase-are-all-you-need-to-host-your-web-apps-f7ab55919f53/

 

React and Firebase are all you need to host your web apps

by Ashish Nandan Singh React and Firebase are all you need to host your web apps A lot of modern web development stories don’t have good endings because of the complex number of technologies involved and the development approach adopted to get work done. T

www.freecodecamp.org

https://firebase.google.com/docs/cli#project_aliases

 

Firebase CLI 참조  |  Firebase

Firebase CLI(GitHub)는 Firebase 프로젝트 관리, 조회, 배포를 위한 여러 가지 도구를 제공합니다. Firebase CLI를 사용하기 전에 Firebase 프로젝트를 설정하세요. CLI 설정 또는 업데이트 Firebase CLI 설치 운영체제, 숙련도 또는 사용 사례에 맞는 방법을 사용하여 Firebase CLI를 설치할 수 있습니다. CLI 설치 방법에 관계없이 동일한 기능 및 firebase 명령어에 액세스할 수 있습니다. Win

firebase.google.com