{"id":22387768,"url":"https://github.com/j3rrryy/todo_app","last_synced_at":"2026-04-20T09:02:58.937Z","repository":{"id":197847407,"uuid":"699481779","full_name":"j3rrryy/todo_app","owner":"j3rrryy","description":"Simple To Do app. Written using Django REST Framework","archived":false,"fork":false,"pushed_at":"2025-01-11T00:00:47.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T21:14:53.785Z","etag":null,"topics":["django-rest-framework","docker","nginx","postgresql","todo"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/j3rrryy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-02T18:09:57.000Z","updated_at":"2025-01-11T00:00:50.000Z","dependencies_parsed_at":"2025-01-08T14:35:26.669Z","dependency_job_id":"2ffd159f-e27a-4106-989e-fd27d8883c9b","html_url":"https://github.com/j3rrryy/todo_app","commit_stats":null,"previous_names":["j3rrryy/todo_app"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/j3rrryy/todo_app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j3rrryy%2Ftodo_app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j3rrryy%2Ftodo_app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j3rrryy%2Ftodo_app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j3rrryy%2Ftodo_app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/j3rrryy","download_url":"https://codeload.github.com/j3rrryy/todo_app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j3rrryy%2Ftodo_app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32040353,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django-rest-framework","docker","nginx","postgresql","todo"],"created_at":"2024-12-05T02:11:04.968Z","updated_at":"2026-04-20T09:02:58.918Z","avatar_url":"https://github.com/j3rrryy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple To Do app\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/j3rrryy/todo_app/actions/workflows/main.yml\"\u003e\n    \u003cimg src=\"https://github.com/j3rrryy/todo_app/actions/workflows/main.yml/badge.svg\" alt=\"СI/CD\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://www.python.org/downloads/release/python-3120/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Python-3.12-FFD64E.svg\" alt=\"Python 3.12\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/j3rrryy/todo_app/blob/main/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/License-MIT-blue.svg\" alt=\"MIT License\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/astral-sh/ruff\"\u003e\n    \u003cimg src=\"https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json\" alt=\"Ruff\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## :book: Key features\n\n- Token authentication (Djoser)\n- Easy management of your tasks\n\n## :page_with_curl: API\n\n|Method|URL|Headers|Body|Description|\n|:-:|:-:|:-:|:-:|:-:|\n|`POST`|`/api/v1/auth/users/`|`-`|`email`, `username`, `password`|Register a new user|\n|`POST`|`/api/v1/auth/token/login/`|`-`|`username`, `password`|Obtain the user authentication token|\n|`GET`|`/api/v1/auth/users/me/`|`Authorization: Token \u003cuser_token\u003e`|`-`|Get the user data|\n|`POST`|`/api/v1/auth/users/set_username/`|`Authorization: Token \u003cuser_token\u003e`|`new_username`, `current_password`|Change the username|\n|`POST`|`/api/v1/auth/users/set_password/`|`Authorization: Token \u003cuser_token\u003e`|`new_password`, `current_password`|Change the user password|\n|`POST`|`/api/v1/auth/token/logout/`|`Authorization: Token \u003cuser_token\u003e`|`-`|Logout the user (remove the user authentication token)|\n|`DELETE`|`/api/v1/users/me/`|`Authorization: Token \u003cuser_token\u003e`|`current_password`|Delete the user|\n|`GET`|`/api/v1/tasks/`|`Authorization: Token \u003cuser_token\u003e`|`-`|Get the user tasks|\n|`POST`|`/api/v1/tasks/`|`Authorization: Token \u003cuser_token\u003e`|`title`, `description` (str, default=blank), `priority` (float [0; 1], default=1), `completed` (bool, default=False)|Post a new task|\n|`GET`|`/api/v1/tasks/\u003ctask_id\u003e/`|`Authorization: Token \u003cuser_token\u003e`|`-`|Get the task|\n|`PATCH`|`/api/v1/tasks/\u003ctask_id\u003e/`|`Authorization: Token \u003cuser_token\u003e`|Any key (`title` / `description` / `priority` / `completed`)|Update the task|\n|`DELETE`|`/api/v1/tasks/\u003ctask_id\u003e/`|`Authorization: Token \u003cuser_token\u003e`|`-`|Delete the task|\n\n## :computer: Requirements\n\n- Docker\n\n## :hammer_and_wrench: Getting started\n\n- Copy `.env` file from `examples/` to `docker/` folder and fill it in\n\n### :rocket: Start\n\n  ```shell\n  docker compose up --build -d\n  ```\n\n### :x: Stop\n\n```shell\ndocker compose stop\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj3rrryy%2Ftodo_app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fj3rrryy%2Ftodo_app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj3rrryy%2Ftodo_app/lists"}