|
6 | 6 |
|
7 | 7 | Simplified Firebase authentication for vue projects with support for Facebook & Google login & Github & Twitter and with support Progressive Web Apps
|
8 | 8 |
|
| 9 | +## Config |
| 10 | +### Step 1 |
| 11 | +Firebase Auth Provides Method Email/Password,Google,Facebook,Github,Twitter Enabled [Firebase console](https://console.firebase.google.com/) |
| 12 | + |
| 13 | +### Step 2 |
| 14 | +Initialize Firebase At ``main.js`` [Firebase Credentials](https://console.firebase.google.com/) |
| 15 | +``` bash |
| 16 | +firebase.initializeApp({ |
| 17 | + apiKey: '', |
| 18 | + authDomain: '', |
| 19 | + databaseURL: '', |
| 20 | + projectId: '', |
| 21 | + storageBucket: '' |
| 22 | +}) |
| 23 | +``` |
9 | 24 |
|
10 | | -## Build Setup |
| 25 | + |
| 26 | +## Installation |
11 | 27 |
|
12 | 28 | ``` bash
|
| 29 | +# Git Clone Project |
| 30 | +git clone git@github.com:aofdev/vue-firebase-auth-vuex.git |
| 31 | + |
| 32 | +# Cd project |
| 33 | +cd vue-firebase-auth-vuex |
| 34 | + |
13 | 35 | # install dependencies
|
14 | 36 | yarn install
|
15 | 37 |
|
|
0 commit comments