generated fromapp-generator/core-django
- Notifications
You must be signed in to change notification settings - Fork0
Django & DRF Integration - App-Generator.dev DOCS
NotificationsYou must be signed in to change notification settings
app-generator/docs-django-drf
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Coding sample forDjango & DRF Integration documentation page. The DRF ecosystem provides many ways to secure your API using basic authentication or tokens.Here, we will show you how to easily secure an API for a model created inDjango using Djoser.
👉 GetSupport via
Discord
👉 Download the code
$ git clone https://github.com/app-generator/docs-django-drf.git$cd docs-django-drf
👉 Install modules via
VENV
$ virtualenv env$source env/bin/activate$ pip install -r requirements.txt
👉 Set Up Database
$ python manage.py makemigrations$ python manage.py migrate
👉 Start the app
$ python manage.py runserver
At this point, the app runs athttp://127.0.0.1:8000/
.
Django & DRF Sample - Coding sample provided byApp Generator