본문 바로가기
Ionic & Angular & Firebase

[Firebase] Hosting에 Angular/Ionic 프로젝트 배포하기 01

by 오늘의개발부 2020. 3. 12.
반응형

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

 

내 프로젝트를 확인할 수 있다. 

 

반응형