Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arjayosma/expo-firebase-authentication
https://github.com/arjayosma/expo-firebase-authentication
authentication expo firebase mobile mobile-app react-native
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/arjayosma/expo-firebase-authentication
- Owner: arjayosma
- Created: 2020-03-25T04:11:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-26T18:27:14.000Z (almost 2 years ago)
- Last Synced: 2024-04-15T08:06:38.065Z (7 months ago)
- Topics: authentication, expo, firebase, mobile, mobile-app, react-native
- Language: JavaScript
- Size: 1.49 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sample Firebase Authentication Application
This is a sample Expo (React Native) Firebase Authentication application.
## Prerequisites
Make sure you have Expo installed.
`npm install --global expo-cli`
## Installation
Install all packages using
`npm install`
or
`yarn install`
## Usage
For those who have access to the Firebase console. Copy the configuration from there:
```javascript
const firebaseConfig = {
apiKey: 'AIXXX',
authDomain: 'XXX-test.firebaseapp.com',
databaseURL: 'https://XXX-test.firebaseio.com',
projectId: 'XXX-test',
storageBucket: 'XXX-test.appspot.com',
messagingSenderId: '000000',
appId: '1:XXX:web:XXX',
measurementId: 'G-XXXX'
};
```In this project, paste the configuration inside `src/config/firebase.js`;
## Starting the Application
Just execute the `expo start` command.