https://github.com/expresshermes/firebase-auth-django
A django web app with firebase authentication for users
https://github.com/expresshermes/firebase-auth-django
django firebase pyrebase
Last synced: about 1 month ago
JSON representation
A django web app with firebase authentication for users
- Host: GitHub
- URL: https://github.com/expresshermes/firebase-auth-django
- Owner: ExpressHermes
- Created: 2020-11-24T18:47:26.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-01T07:01:38.000Z (over 4 years ago)
- Last Synced: 2025-02-24T09:28:28.585Z (over 1 year ago)
- Topics: django, firebase, pyrebase
- Language: Python
- Homepage:
- Size: 231 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Auth with Firebase

A django web app with firebase authentication for users
# Installation
## Prerequsites
- Python
- Django
- Pyrebase
## How to set up locally
- Fork and clone repo on your machine.
```
git clone https://github.com/ExpressHermes/Firebase-Auth-Django.git
```
- Create a virtual environment. Activate it. Make sure it is in the same directory as the cloned repo.
```
# for linux users
python -m venv env
source env/bin/activate
```
- Install all requirements.
```
pip install -r requirements.txt
```
- Inside the project folder, create migrations
```
python manage.py migrate
```
- Run the project with `local_settings`
```
python manage.py runserver --settings=main.local_settings
```