Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koladev32/django-auth-react-tutorial
https://github.com/koladev32/django-auth-react-tutorial
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/koladev32/django-auth-react-tutorial
- Owner: koladev32
- License: apache-2.0
- Created: 2021-05-14T22:42:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-25T09:17:21.000Z (over 2 years ago)
- Last Synced: 2023-03-06T01:48:33.527Z (almost 2 years ago)
- Language: Python
- Size: 23.4 KB
- Stars: 17
- Watchers: 1
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django-auth-react-tutorial
## Create a virtual environment
```shell
virtualenv --python=/usr/bin/python3.8 venv
```## Install requirements
```shell
pip install -r requirements.txt
```## Migrate and Start the server
```shell
python manage.py migrate
python manage.py runserver
```