{"id":21421645,"url":"https://github.com/qreolq/tasklist","last_synced_at":"2026-04-07T08:01:32.690Z","repository":{"id":195385447,"uuid":"692807878","full_name":"qReolq/tasklist","owner":"qReolq","description":"This REST API application allows you to organize the creation and tracking of your tasks.","archived":false,"fork":false,"pushed_at":"2024-11-07T15:52:11.000Z","size":255,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-16T20:14:27.821Z","etag":null,"topics":["checkstyle","docker","github-actions","jacoco-plugin","junit","jwt-authorization","liquibase","minio","mockito","mybatis","postgresql","redis","springboot","swagger-ui"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qReolq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-09-17T16:37:45.000Z","updated_at":"2024-11-07T15:52:15.000Z","dependencies_parsed_at":"2023-09-17T18:35:09.536Z","dependency_job_id":"a6054baa-8652-4b71-9f8c-3dda31b94f12","html_url":"https://github.com/qReolq/tasklist","commit_stats":null,"previous_names":["qreolq/tasklist"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/qReolq/tasklist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qReolq%2Ftasklist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qReolq%2Ftasklist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qReolq%2Ftasklist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qReolq%2Ftasklist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qReolq","download_url":"https://codeload.github.com/qReolq/tasklist/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qReolq%2Ftasklist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31504897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["checkstyle","docker","github-actions","jacoco-plugin","junit","jwt-authorization","liquibase","minio","mockito","mybatis","postgresql","redis","springboot","swagger-ui"],"created_at":"2024-11-22T20:36:47.832Z","updated_at":"2026-04-07T08:01:32.670Z","avatar_url":"https://github.com/qReolq.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![codecov](https://codecov.io/github/qReolq/tasklist/graph/badge.svg?token=EJGNX53563)](https://codecov.io/github/qReolq/tasklist)\n\n# tasklist\n\nThis REST API application allows you to organize the creation and tracking of your tasks.\n\n* [Diagrams](#sequence-diagram)\n* [Environments](#environments)\n* [Quick start](#quick-start)\n\n## Technologies\nSpring(Boot, Security, JPA), JWT, Swagger, Docker, PostgreSQL, Redis, Mybatis, MinIO, Liquibase, JUnit, Mockito, JaCoCo, Testcontainers\n \n## Features\n  * User can:\n     * Login and register(with jwt tokens)\n     * Create tasks\n     * Upload profile\n     * Upload images for tasks(use MinIO storage)\n  * Util\n      * Checkstyle and Github Actions\n      * Swagger UI\n      * JaCoCo plugin\n\n## Sequence diagram\n\n![Sequence diagram](docs/sequence-diagram.png)\n\n## Component diagram\n\n![Component diagram](docs/component-diagram.png)\n\nMain application communicates with cache (Redis), main database (Postgresql), file storage (MinIO).\n\n## Class diagram\n\n![Class diagram](docs/er-diagram.png)\n\nWe have two main tables - **Users** and **Tasks**.\n\n**Users** table represents user in this application. User can login, create and update tasks.\n\nUser can have roles - `ROLE_USER` or `ROLE_ADMIN`.\n\n**Tasks** table represents task in this application. Task can be created and deleted by user.\n\nTask can have images.\n\n## Environments\n\nTo run this application you need to create `.env` file in root directory with next environments:\n\n- `POSTGRES_HOST` - host of Postgresql database\n- `POSTGRES_USERNAME` - username for Postgresql database\n- `POSTGRES_PASSWORD` - password for Postgresql database\n- `POSTGRES_DATABASE` - name of Postgresql database\n- `POSTGRES_SCHEMA` - name of Postgresql schema\n- `REDIS_HOST` - host of Redis instance\n- `REDIS_PORT` - port of Redis instance\n- `REDIS_PASSWORD` - password for Redis\n- `JWT_SECRET` - secret string for JWT tokens\n- `MINIO_BUCKET` - name of bucket for MinIO\n- `MINIO_URL` - URL of MinIO instance\n- `MINIO_ACCESS_KEY` - access key of MinIO\n- `MINIO_SECRET_KEY` - secret key of MinIO\n\n## Quick start\n1. Clone this repo into folder.\n\n```Bash\ngit clone https://github.com/qReolq/tasklist.git\ncd tasklist\n```\n2. Start docker compose\n\n```Bash\ndocker compose up\n```\n3. Go to localhost:8080/swagger-ui/index.html#/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqreolq%2Ftasklist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqreolq%2Ftasklist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqreolq%2Ftasklist/lists"}