반응형
Firebase Hosting에 Angular/Ionic 프로젝트 배포하기 01 : Firebase Cli 설치
Firebase Cli 설치
PC에 npm이 설치되어 있는 환경, firebase 프로젝트를 생성한 환경(https://firebase.google.com/)
1. firebase-tools 설치
npm install -g firebase-tools
firebase --version
7.14.0
2. firebase 로그인
2-1. firbase docs 안내사항 (오류 발생)
firebase login
Error: Cannot run login in non-interactive mode. See login:ci to generate a token for use in non-interactive environments.
2-2. 권한문제로 확인.
firebase login --interactive
3. 구글 로그인
i Firebase optionally collects CLI usage and error reporting information to help improve our products. Data is collected in accordance with Google's privacy policy (https://policies.google.com/privacy) and is not used to identify you.
? Allow Firebase to collect CLI usage and error reporting information? (Y/n)
위 안내에 Y를 입력하면 로그인 화면으로 이동한다. 로그인을 완료하면 아래 화면을 만날 수 있다.
4. firebase 프로젝트 목록 확인
4-1. firbase docs 안내사항 (오류 발생)
firebase list
This command is deprecated. Instead, use 'firebase projects:list' command to list your projects.
Error: Server Error. certificate has expired
4-2. 권장사항으로 다시 입력
firebase projects:list
내 프로젝트를 확인할 수 있다.
반응형
'Ionic & Angular & Firebase' 카테고리의 다른 글
GCP Firebase Firestore 지역별 속도 확인 location latency (0) | 2020.03.23 |
---|---|
[Firebase] Hosting에 Angular/Ionic 프로젝트 배포하기 02 (0) | 2020.03.12 |
[Firebase] FCM 구현시, 내 프로젝트에 API키 세팅하기 (0) | 2020.02.11 |
[Firebase] Firestore DB 설계시 참고할 내용, 팁 (0) | 2020.01.15 |
[ionic, Angular] horizon, vertical, center 아이오닉 정중앙 정렬 (0) | 2020.01.13 |