Firebase로 쓰레기 계획용 카드 서비스를 만들어 보세요.
3195 단어 Node.jsscrumJavaScriptFirebase
개발 환경
Firebase 계정 등록
비용과 무료 범위
firebase hosting
사용 방법
Firebase-tools 설치
$ npm install -g firebase-tools
로그인
rei-no-MacBook-Air:agile_estimate_card alin$ firebase login
Visit this URL on any device to log in:
https://www.firebase.com/login/confirm.html?ticket=XXXXXX
Waiting for authentication...
✔ Success! Logged in as [email protected]
rei-no-MacBook-Air:agile_estimate_card alin$ firebase logout
✔ Logged out from [email protected]
애플리케이션 초기화
rei-no-MacBook-Air:agile_estimate_card alin$ firebase init
? What Firebase do you want to use? sweltering-torch-299
? What directory should be the public root? public
✔ Public directory public has been created
Firebase initialized, configuration written to firebase.json
rei-no-MacBook-Air:agile_estimate_card alin$ ls
firebase.json public
rei-no-MacBook-Air:agile_estimate_card alin$ vi firebase.json
vi firebase.json
------
{
"firebase": "sweltering-torch-299",
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
애플리케이션 배포
vi public/index.html
-------------
<html>
<head>
<title>Agile Estimate Card</title>
</head>
<body>
<h1>hello firebase</h1>
</body>
</html>
rei-no-MacBook-Air:agile_estimate_card alin$ firebase deploy
=== Deploying to 'sweltering-torch-299'...
i deploying hosting
i preparing public directory for upload...
✔ 1 files uploaded successfully
✔ Deploy complete!
URL: https://sweltering-torch-299.firebaseapp.com
Dashboard: https://sweltering-torch-299.firebaseio.com
Visit the URL above or run firebase open
결과쓰레기 계획용 카드 서비스 만들기
Reference
이 문제에 관하여(Firebase로 쓰레기 계획용 카드 서비스를 만들어 보세요.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/alingogo/items/83bda0c18b2b2b27dbfb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)