Firebase Real Time Web Admin App
1.0.0
Überprüfen Sie die veröffentlichte App unter: https://programandoconro.github.io/Firebase-Real-Time-Web-Admin-App/
Usuario: [email protected]
Clave: 123456
Administrationspanel zum Schreiben, Lesen und Löschen von Daten in Echtzeit aus Firebase mit React JS
. Dieses Administrationspanel ist Teil des React-Native
für Android-Projekts, verfügbar unter: https://github.com/programandoconro/React-Native-Firebase-Restaurant-Reservation-App
git clone https://github.com/programandoconro/Firebase-Real-Time-Web-Admin-App
cd Firebase-Real-Time-Web-Admin-App
firebaseService.js
unter src/store/firebaseService.js
hinzu var firebaseConfig = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: "",
appId: "",
measurementId: ""
};
Ändern Sie die Sicherheitsregeln der Echtzeitdatenbank wie folgt:
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
Aktivieren Sie die E-Mail-/Passwort-Option in der Authentifizierung des erstellten Projekts und erstellen Sie abschließend einen Benutzernamen und ein Passwort.
Schritt für Schritt: https://dzone.com/articles/how-to-integrate-react-application-using-firebase-1.
npm install
npm start
Firebase
.