Firebase Real Time Web Admin App
1.0.0
Check the App published at: https://programandoconro.github.io/Firebase-Real-Time-Web-Admin-App/
Usuario: [email protected]
Clave: 123456
Administration Panel to write, read and delete data in real time from Firebase using React JS
. This Administration panel is part of the React-Native
for Android project available at: 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
file located at src/store/firebaseService.js
var firebaseConfig = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: "",
appId: "",
measurementId: ""
};
Change the realtime database security rules to:
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
Enable the email/password option in the Authentication of the created project, finally, create a username and password.
Step by step: https://dzone.com/articles/how-to-integrate-react-application-using-firebase-1.
npm install
npm start
Firebase
.