Firebase Real Time Web Admin App
1.0.0
檢查發布的應用程式:https://programandoconro.github.io/Firebase-Real-Time-Web-Admin-App/
Usuario: [email protected]
Clave: 123456
管理面板使用React JS
從 Firebase 即時寫入、讀取和刪除資料。此管理面板是React-Native
for Android 專案的一部分,網址為: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
src/store/firebaseService.js
的firebaseService.js
檔案中 var firebaseConfig = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: "",
appId: "",
measurementId: ""
};
將即時資料庫安全規則變更為:
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
在已建立的項目的身份驗證中啟用電子郵件/密碼選項,最後建立使用者名稱和密碼。
一步一步:https://dzone.com/articles/how-to-integrate-react-application-using-firebase-1。
npm install
npm start
Firebase
即時寫入、讀取和刪除資料。