oktatas:web:firebase
Tartalomjegyzék
Firebase
- Szerző: Sallai András
- Copyright © 2022, Sallai András
- Szerkesztve: 2022
- Web: https://szit.hu
Regisztráció
- https://firebase.google.com/ (2022)
Telepítés
npm install -g firebase-tools
Ellenőrzés:
firebase --version
Projekt készítése
Lépjünk be a projekt könyvtárába:
Bejelentkezünk:
firebase login
A projekt felkészítése:
firebase init
Lehetséges kimenet:
firebase init ######## #### ######## ######## ######## ### ###### ######## ## ## ## ## ## ## ## ## ## ## ## ###### ## ######## ###### ######## ######### ###### ###### ## ## ## ## ## ## ## ## ## ## ## ## #### ## ## ######## ######## ## ## ###### ######## You're about to initialize a Firebase project in this directory: /home/andras/dev/gyak/firebase/app02 ? Which Firebase features do you want to set up for this directory? Press Space to select features, then Enter to confirm your choices. (Press <space> to select, <a> to toggle all, <i> to invert selection, and <enter> to proceed) (optionally) provision default instance ◯ Firestore: Configure security rules and indexes files for Firestore ◯ Functions: Configure a Cloud Functions directory and its files ❯◉ Hosting: Configure files for Firebase Hosting and (optionally) set up GitHub Action deploys ◯ Hosting: Set up GitHub Action deploys ◯ Storage: Configure a security rules file for Cloud Storage (Move up and down to reveal more choices)
A „space” billentyűvel választhatunk ki.
Szerkesszük a firebase.json fájlt. Adjuk meg melyik könyvtárból kell feltölteni. Legyen például a public könyvtár:
- firebase.json
{ "database": { "rules": "database.rules.json" }, "hosting": { "public": "public" } }
Feltöltés:
firebase deploy
oktatas/web/firebase.txt · Utolsó módosítás: 2024/04/01 21:38 szerkesztette: admin