https://github.com/pragativerma18/django-todo-react
A React Todo app using Django-models and Django Rest-framework.
https://github.com/pragativerma18/django-todo-react
Last synced: 7 months ago
JSON representation
A React Todo app using Django-models and Django Rest-framework.
- Host: GitHub
- URL: https://github.com/pragativerma18/django-todo-react
- Owner: PragatiVerma18
- Created: 2019-12-28T07:43:28.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-22T18:24:44.000Z (about 4 years ago)
- Last Synced: 2025-01-21T05:07:29.128Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 360 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django-todo-react
## Quick StartTo get this project up and running locally on your computer:
1. Set up the Python Virtual environment.
```
virtualenv env
.\\env\\Scripts\\activate
```
2. Clone the repository
```
git clone https://github.com/PragatiVerma18/django-todo-react/
```
3. Assuming you have Python setup, run the following commands (if you're on Windows you may use `py` or `py -3` instead of `python` to start Python):
```
pip install django
pip install django-avatars
python manage.py makemigrations
python manage.py migrate
python manage.py collectstatic
python manage.py createsuperuser # Create a superuser
python manage.py runserver
```
4. Open a browser to `http://127.0.0.1:8000/admin/` to open the admin site
5. Open tab to `http://127.0.0.1:8000` to see the main site, signup and then login to move to the create a todo