All Projects → Vivify-Ideas → python-django-drf-boilerplate

Vivify-Ideas / python-django-drf-boilerplate

Licence: other
Django Boilerplate for starting fresh new DRF projects

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to python-django-drf-boilerplate

django-ninja-extra
Django Ninja Extra - Class-Based Utility and more for Django Ninja(Fast Django REST framework)
Stars: ✭ 53 (-10.17%)
Mutual labels:  drf
DjangoStarter
基于Django定制的快速Web开发模板,功能包括:Docker-Compose部署,缓存,业务代码生成器,接口限流,DjangoAdmin验证码,登录次数尝试,屏蔽了RestFramework默认的API主页等
Stars: ✭ 28 (-52.54%)
Mutual labels:  drf
django-rest-framework-datatables-editor
Seamless integration between Django REST framework, Datatables and Datatables Editor.
Stars: ✭ 25 (-57.63%)
Mutual labels:  drf
new-ara-api
KAIST Community Ara Renewal Project - KAIST official BBS
Stars: ✭ 15 (-74.58%)
Mutual labels:  drf
drf-registration
Simple user registration package based on Django Rest Framework. DRF Registration - The easy way to generate registration RESTful APIs
Stars: ✭ 32 (-45.76%)
Mutual labels:  drf
django-project-template
一个django的工程模板,为了快速启动一个工程进行开发
Stars: ✭ 15 (-74.58%)
Mutual labels:  drf
drf-chat-server-example
A chat server example used Django REST framework with pytest
Stars: ✭ 15 (-74.58%)
Mutual labels:  drf
drf-angular-docker-tutorial
Dockerized Django Back-end API using DRF with Angular Front-end Tutorial
Stars: ✭ 53 (-10.17%)
Mutual labels:  drf
django-rest-framework-recaptcha
reCAPTCHA field for Django REST framework serializers
Stars: ✭ 24 (-59.32%)
Mutual labels:  drf
django-rest-multitokenauth
An extension to Django-Rest-Frameworks Token Authentication, enabling a user to have multiple authorization tokens
Stars: ✭ 13 (-77.97%)
Mutual labels:  drf
django-experience
Tutorial Django Experience 2022
Stars: ✭ 173 (+193.22%)
Mutual labels:  drf
surveySystem
问卷调查系统
Stars: ✭ 74 (+25.42%)
Mutual labels:  drf

Django Rest Framework boilerplate

Code style: black

This is boilerplate for starting fresh new DRF projects. It's built using cookiecutter-django-rest.

Highlights

  • Modern Python development with Python 3.8+
  • Bleeding edge Django 3.1+
  • Fully dockerized, local development via docker-compose.
  • PostgreSQL
  • Full test coverage, continuous integration, and continuous deployment.
  • Celery tasks

Features built-in

  • JSON Web Token authentication using Simple JWT
  • Social (FB + G+) signup/sigin
  • API Throttling enabled
  • Password reset endpoints
  • User model with profile picture field using Easy Thumbnails
  • Files management (thumbnails generated automatically for images)
  • Sentry setup
  • Swagger API docs out-of-the-box
  • Code formatter black
  • Tests (with mocking and factories) with code-coverage support

API Docs

API documentation is automatically generated using Swagger. You can view documention by visiting this link.

Prerequisites

If you are familiar with Docker, then you just need Docker. If you don't want to use Docker, then you just need Python3 and Postgres installed.

Local Development with Docker

Start the dev server for local development:

cp .env.dist .env
docker-compose up

Run a command inside the docker container:

docker-compose run --rm web [command]

Local Development without Docker

Install

python3 -m venv env && source env/bin/activate                # activate venv
cp .env.dist .env                                             # create .env file and fill-in DB info
pip install -r requirements.txt                               # install py requirements
./manage.py migrate                                           # run migrations
./manage.py collectstatic --noinput                           # collect static files
redis-server                                                  # run redis locally for celery
celery -A src.config worker --beat --loglevel=debug
  --pidfile="./celerybeat.pid"
  --scheduler django_celery_beat.schedulers:DatabaseScheduler # run celery beat and worker

Run dev server

This will run server on http://localhost:8000

./manage.py runserver

Create superuser

If you want, you can create initial super-user with next commad:

./manage.py createsuperuser

Running Tests

To run all tests with code-coverate report, simple run:

./manage.py test

You're now ready to ROCK! 💅 🛳

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].