Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/subhamgiri16/firebase-auth

Firebase Authentication
https://github.com/subhamgiri16/firebase-auth

flask-application python3 webapp

Last synced: about 1 month ago
JSON representation

Firebase Authentication

Awesome Lists containing this project

README

        

# Firebase-Auth

## Dev Setup

Setup a virtual environment and install the requirements.

```bash
python3 -m venv .venv
. .venv/bin/activate
```

Install dependencies

```bash
pip3 install -r requirements.txt
```

update the firebase config in `app.py` with your own firebase credentials

```python
"apiKey": "",
"authDomain": "",
"projectId": "",
"storageBucket": "",
"messagingSenderId": "",
"appId": "",
```

Run application

```bash
python3 app.py
```