Skip to content

Commit d8e3180

Browse files
committed
init
0 parents commit d8e3180

File tree

28 files changed

+11157
-0
lines changed

28 files changed

+11157
-0
lines changed

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# react-redux-firebase-authentication
2+
3+
* Found in [Taming the State in React](https://roadtoreact.com/course-details?courseId=TAMING_THE_STATE)
4+
* [Live](https://react-firebase-authentication.wieruch.com/)
5+
6+
## Features
7+
8+
* uses:
9+
* React (create-react-app)
10+
* firebase 4.3.1
11+
* react-router 4.2.0
12+
* redux
13+
* features:
14+
* Sign In
15+
* Sign Up
16+
* Sign Out
17+
* Password Forget
18+
* Password Change
19+
* Protected Routes with Authorization
20+
* Database: Users
21+
22+
## Installation
23+
24+
* `git clone git@github.com:rwieruch/react-redux-firebase-authentication.git`
25+
* `cd react-redux-firebase-authentication`
26+
* `npm install`
27+
* `npm start`
28+
* visit http://localhost:3000/
29+
* Use your own Firebase Credentials
30+
31+
### Use your own Firebase Credentials
32+
33+
* visit https://firebase.google.com/ and create a Firebase App
34+
* copy and paste your Credentials from your Firebase App into src/firebase/firebase.js
35+
* activate Email/Password Sign-In Method in your Firebase App

0 commit comments

Comments
 (0)