Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/subhamgiri16/firebase-auth
- Owner: subhamgiri16
- Created: 2023-09-10T12:12:21.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-10T12:23:17.000Z (over 1 year ago)
- Last Synced: 2024-11-10T18:08:48.223Z (3 months ago)
- Topics: flask-application, python3, webapp
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```