Skip to content

Commit ec331fe

Browse files
Create README.md
1 parent aba8e5d commit ec331fe

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# ionic-react-hook-form-react-fire
2+
3+
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+
export const FIREBASE_CONFIG = {
13+
// YOUR FIREBASE CONFIGURATION
14+
};
15+
16+
// NAME OF COLLECTION IN FIREBASE TO LIST
17+
export const FIREBASE_COLLECTION_NAME = "users"
18+
19+
// THIS IS REQUIRED FOR ANDROID
20+
// SEE - https://github.com/FirebaseExtended/reactfire/issues/228
21+
global.globalThis = window;
22+
```
23+
24+
### Whats Next
25+
- Add Items Using Ionic Modal
26+
- Delete Items using IonSlidingItem
27+
- Create Account
28+
29+
### See Other Work On My YouTube Channel
30+
- https://www.youtube.com/channel/UCMCcqbJpyL3LAv3PJeYz2bg

0 commit comments

Comments
 (0)