lgigek / django-drf-playground

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-drf-playground

This project was initially created as an example to Construdelas' students.

It's a TO-DO list, that's not finished yet.

Running the project

This project uses docker and docker-compose.

Running the project

Simply run docker-compose up --build app. It'll be available at http://localhost:8000.

Running the tests

Run docker-compose up --build integration-tests

Project routes

As a to-do list, we have the users:

  • POST /api/v1/users - Creates a user;
  • GET /api/v1/users - List all users;
  • GET /api/v1/users/<user_id> - Fetch a specific user;
  • PATCH /api/v1/users/<user_id> - Not created yet;
  • DELETE /api/v1/users/<user_id> - Not created yet;

And the tasks (routes not created yet).

About


Languages

Language:Python 80.5%Language:Shell 17.5%Language:Dockerfile 2.1%