Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- PAT
- network
- 명령어
- 실습
- worker
- 네트워크
- dockerfile
- express
- OpenStack
- mysql
- IaaS
- git
- 용어정리
- RAID
- 개념
- MongoDB
- 도커
- RAPA
- PaaS
- kubernetes
- gns3
- 클라우드
- docker
- Javascript
- nodejs
- node.js
- 쿠버네티스
- 이론
- Docker-compose
- Docker Swarm
Archives
- Today
- Total
융융이'Blog
리액트+FireBase 연동 디플로이(react & firebase deploy) 본문
순서는 매우 간단하다.
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://firebase.google.com/docs/cli#project_aliases
'2022이전 > React' 카테고리의 다른 글
ProTypes 사용 예시 (0) | 2020.02.17 |
---|---|
handleChange 간단하게 구현하기(State, setState이용) (0) | 2020.02.17 |
REACT_FRONT_END 의 폴더구성 (0) | 2020.02.03 |
REACT_코드스플리팅_Code Spliting (1) | 2020.01.28 |
REACT_SPA페이지구현(2)(match,location,history,withrouter) (0) | 2020.01.28 |