
Simple boilerplate for Django 2.1 & Django rest framework
The django-rest-framework-boilerplate is a simple boilerplate for Django and Django Rest Framework. It provides a set of pre-configured features and functionalities to help developers quickly set up a Django Rest Framework project.
$ git clone https://github.com/p8ul/django-rest-framework-boilerplate$ cd django-rest-framework-boilerplate$ docker-compose up$ pip install virtualenv$ virtualenv env$ env\Scripts\activate$ source env/bin/activate$ pip install -r requirements.txt$ python manage.py makemigrations$ python manage.py migrate$ python manage.py createsuperuserThe django-rest-framework-boilerplate is a convenient solution for quickly setting up a Django Rest Framework project. It provides pre-configured features such as CRUD endpoints for users, JWT authentication, and Docker configurations. The installation process is straightforward, with options for using Docker Compose or running the project without Docker. Overall, this boilerplate can save developers time and effort in setting up a Django Rest Framework project.

Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. It follows the model-view-controller (MVC) architectural pattern, providing an extensive set of built-in tools and conventions to streamline the creation of robust and scalable web applications.
A website that uses Docker for containerization to streamline development, testing, and deployment workflows. This includes features such as containerization of dependencies, automated builds and deployments, and container orchestration to ensure scalability and availability.