You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sample project motivated by video by David East on [Reactfire](https://github.com/FirebaseExtended/reactfire)
4
+
5
+
-**You should know that [Reactfire](https://github.com/FirebaseExtended/reactfire) is not considered "Production"**
6
+
- In this project I use [Reactfire](https://github.com/FirebaseExtended/reactfire), [Ionic Framework ReactJS Components](https://ionicframework.com/react) and [React-Hook-Form](https://react-hook-form.com/).
7
+
- Currently there is only Login and List Data Collection, will be adding create user, add items and delete items
8
+
9
+
### Required
10
+
you must create a file called `src/env.js` and add the following code
11
+
```javascript
12
+
exportconstFIREBASE_CONFIG= {
13
+
// YOUR FIREBASE CONFIGURATION
14
+
};
15
+
16
+
// NAME OF COLLECTION IN FIREBASE TO LIST
17
+
exportconstFIREBASE_COLLECTION_NAME="users"
18
+
19
+
// THIS IS REQUIRED FOR ANDROID
20
+
// SEE - https://github.com/FirebaseExtended/reactfire/issues/228
0 commit comments