No description
| app/library | ||
| project | ||
| scripts | ||
| tests | ||
| .gitignore | ||
| manage.py | ||
| Procfile | ||
| pytest.ini | ||
| README.md | ||
| release-tasks.sh | ||
| requirements.txt | ||
Example of CRUD in Django with REST FRAMEWORK
All endpoints contain your test.
Live Demo
https://example-of-crud-in-django-jrf.herokuapp.com/
Get list
Get Detail
Create
Update
Delete
Install
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
python3 manage.py migrate
Run
python3 manage.py runserver
Fake data
python3 manage.py runscript create_books
Test
pytest