Skip to content

tehseenkhan009/casino

Repository files navigation

django-rest-framework-boilerplate

Simple boilerplate for django & django rest framework

Build Status Coverage Status Maintainability

Tasks list

  • Users api CRUD endpoints
  • DRF JWT Authentication
  • Add docker configurations
  • Document folder structure
  • Configure Static/media & templates
  • Integrate material ui & react js on templates

Jwt token endpoint

Method Endpoint Functionanlity
POST /api-token-auth Request jwt token

User Endpoints

Method Endpoint Functionality
POST /api/user List users
GET /api/user/create Creates a user
GET /api/user/profile/{pk} Retrieve a user
PUT /api/user/update/{pk} Edit a user
DELETE /api/user/destroy/{pk} Delete a user

Installation

If you wish to run your own build, you two options

  1. User Docker compose.

    $ git clone https://github.com/p8ul/django-rest-framework-boilerplate

    $ cd django-rest-framework-boilerplate
    $ docker-compose up

  2. Without docker

First ensure you have python globally installed in your computer. If not, you can get python here.

After doing this, confirm that you have installed virtualenv globally as well. If not, run this:

$ pip install virtualenv

Then, Git clone this repo to your PC

$ git clone https://github.com/p8ul/django-rest-framework-boilerplate
$ cd django-rest-framework-boilerplate

Create a virtual environment

$ virtualenv .venv && source .venv/bin/activate

Install dependancies

$ pip install -r requirements.txt

Make migrations & migrate

$ python manage.py makemigrations && python manage.py migrate

Create Super user

$ python manage.py createsuperuser

Launching the app

$ python manage.py runserver

Run Tests

$ python manage.py test

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published