https://github.com/subhamgiri16/firebase-auth
Firebase Authentication
https://github.com/subhamgiri16/firebase-auth
flask-application python3 webapp
Last synced: over 1 year ago
JSON representation
Firebase Authentication
- Host: GitHub
- URL: https://github.com/subhamgiri16/firebase-auth
- Owner: subhamgiri16
- Created: 2023-09-10T12:12:21.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-10T12:23:17.000Z (almost 3 years ago)
- Last Synced: 2025-01-08T03:06:43.943Z (over 1 year 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
```