https://github.com/alexmhack/django_rest_quickstart
We're going to create a simple API to allow admin users to view and edit the users and groups in the system.
https://github.com/alexmhack/django_rest_quickstart
Last synced: 5 months ago
JSON representation
We're going to create a simple API to allow admin users to view and edit the users and groups in the system.
- Host: GitHub
- URL: https://github.com/alexmhack/django_rest_quickstart
- Owner: Alexmhack
- Created: 2018-10-14T10:25:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-15T16:43:14.000Z (over 7 years ago)
- Last Synced: 2025-08-22T06:12:26.448Z (5 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django_rest_quickstart
We're going to create a simple API to allow admin users to view and edit the users and groups in the system.
```
# create virtualenv
mkvirtualenv rest
# install packages
pip install django
pip install djangorestframework
# start django project
django-admin startproject tutorial .
python manage.py quickstart
```
Add ```quickstart``` app to the project settings
```
# run migrations
python manage.py migrate
# run server
python manage.py runserver
```