https://github.com/nattatorn-dev/redux-saga-firebase-advance
large scale redux-saga integrate firebase
https://github.com/nattatorn-dev/redux-saga-firebase-advance
create-react-app firebase immutable react react-redux react-router-redux redux-saga reselect sass
Last synced: about 2 months ago
JSON representation
large scale redux-saga integrate firebase
- Host: GitHub
- URL: https://github.com/nattatorn-dev/redux-saga-firebase-advance
- Owner: nattatorn-dev
- License: mit
- Created: 2017-07-27T10:57:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-27T10:59:24.000Z (almost 8 years ago)
- Last Synced: 2025-03-29T05:38:08.135Z (about 2 months ago)
- Topics: create-react-app, firebase, immutable, react, react-redux, react-router-redux, redux-saga, reselect, sass
- Language: JavaScript
- Homepage:
- Size: 90.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://circleci.com/gh/r-park/todo-redux-saga)
# A simple Todo app example built with [Create React App](https://github.com/facebookincubator/create-react-app), [React Redux](https://github.com/reactjs/react-redux), [Redux Saga](https://github.com/redux-saga/redux-saga), and Firebase
## Stack
- Create React App
- React Redux
- React Router
- React Router Redux
- Redux Saga
- Redux Devtools Extension for Chrome
- Firebase SDK with OAuth authentication
- Immutable
- Reselect
- SASS## Quick Start
```shell
$ git clone https://github.com/r-park/todo-redux-saga.git
$ cd todo-redux-saga
$ npm install
$ npm start
```## Deploying to Firebase
#### Prerequisites:
- Create a free Firebase account at https://firebase.google.com
- Create a project from your [Firebase account console](https://console.firebase.google.com)
- Configure the authentication providers for your Firebase project from your Firebase account console#### Configure this app with your project-specific details:
```json
// .firebaserc{
"projects": {
"default": "your-project-id"
}
}
``````javascript
// src/firebase/config.jsexport const firebaseConfig = {
apiKey: 'your api key',
authDomain: 'your-project-id.firebaseapp.com',
databaseURL: 'https://your-project-id.firebaseio.com',
storageBucket: 'your-project-id.appspot.com'
};
```#### Install firebase-tools:
```shell
$ npm install -g firebase-tools
```#### Build and deploy the app:
```shell
$ npm run build
$ firebase login
$ firebase use default
$ firebase deploy
```## NPM Commands
|Script|Description|
|---|---|
|`npm start`|Start webpack development server @ `localhost:3000`|
|`npm run build`|Build the application to `./build` directory|
|`npm test`|Test the application; watch for changes and retest|