It's a simple angular app where you gonna be an Admin. This app allows you to send request to firebase fetch some data make a pull request et cetera (full REST requests)
- Install node.js
- Install Angular CLA
- Download this app and open terminal
- Use the package manager npm and write command down below and wait some time.
npm install
- first - create firebase database -> copy database url -> past this url to fbDbUrl variable
- second - go to firebase -> authentication and add user(admin)
- third - add firebase app to your project -> copy apiKey -> past this apikey to fbDbUrl variable
- forth - go to firebase authentication -> rules -> and past code down below
"rules": {
".read": true,
".write": "auth != null"
}
}
export const environment: Environment = {
production: false,
apiKey: 'PAST YOUR APIKEY_URL HERE',
fbDbUrl: 'PAST YOUR FIREBASE_DATABESE_URL HERE'
}
# go to enviroments/enviroment.prod.ts and do the same things
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.