Skip to content

Stonedch/django-rest-todo-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django REST Todo app

This is a simple Todo web application built with Django (back-end) and React JS (front-end).
The project enables you to systematize your day-to-day activity with ease. This web application is especially useful for those who is concerned about their productivity. If you want to increase your efficiency, let's start our journey!

Table of contents:

Authentication

Bearer authentication (also called token authentication) is an HTTP authentication scheme that involves security tokens called bearer tokens. The bearer token is a cryptic string, usually generated by the server in response to a login request. The client must send this token in the Authorization header when making requests to protected resources:

Authorization: Token <token>

You can obtain auth token by making a POST request to the/api/auth/login/ endpoint with user's credentials:

{
   "username": "admin",
   "password": "admin"
}

In response you will receive a access-token that is used in the Authorization header for authentication.

Contacts

Created by @stonedch

License

GNU GPL v3

About

This is a simple Todo web application built Django (back-end) and React JS (front-end)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published