{"id":21486261,"url":"https://github.com/barata-ribeiro/taskr","last_synced_at":"2026-04-15T19:32:37.963Z","repository":{"id":222828386,"uuid":"753745197","full_name":"Barata-Ribeiro/Taskr","owner":"Barata-Ribeiro","description":"Taskr is a task management for small to medium teams, where they can properly manage projects and tasks.","archived":false,"fork":false,"pushed_at":"2025-01-03T11:10:37.000Z","size":7292,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-23T19:38:50.873Z","etag":null,"topics":["backend","express","expressjs","nodejs","postgres","postgresql","rest","rest-api","restful","restful-api","task-management","task-manager","task-manager-api","typeorm","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Barata-Ribeiro.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":"2024-02-06T18:01:15.000Z","updated_at":"2025-01-03T11:10:40.000Z","dependencies_parsed_at":"2024-06-11T21:30:01.396Z","dependency_job_id":"9164fdab-1498-4742-ab9c-19d059f150b1","html_url":"https://github.com/Barata-Ribeiro/Taskr","commit_stats":null,"previous_names":["barata-ribeiro/taskr"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Barata-Ribeiro%2FTaskr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Barata-Ribeiro%2FTaskr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Barata-Ribeiro%2FTaskr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Barata-Ribeiro%2FTaskr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Barata-Ribeiro","download_url":"https://codeload.github.com/Barata-Ribeiro/Taskr/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244014145,"owners_count":20383715,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["backend","express","expressjs","nodejs","postgres","postgresql","rest","rest-api","restful","restful-api","task-management","task-manager","task-manager-api","typeorm","typescript"],"created_at":"2024-11-23T13:20:08.113Z","updated_at":"2026-04-15T19:32:37.951Z","avatar_url":"https://github.com/Barata-Ribeiro.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv style=\"text-align:center\"\u003e\n    \u003cimg alt=\"The main logo of Taskr\" width=\"400\" src=\"client/public/images/logo.svg\" title=\"Taskr \nLogo\"/\u003e\n\u003c/div\u003e\n\n**Taskr** is a **task management** application designed to help you organize, prioritize, and collaborate on your projects seamlessly. Whether you're working solo or as part of a team, **Taskr** provides the tools you need to stay productive and efficient. This project was developed with a focus on Java Spring Boot studies. Therefore, the Front End may not be fully implemented.\n\n## Animated Demo\n![Taskr](client/public/images/screenshot.gif \"Taskr Demo\")\n\n## 📚 Features\n\n- Task creation, editing, and deletion\n- Project management\n- Some collaboration\n- Real-time notifications\n- Comments and activity (project feed) tracking\n- Authentication and authorization (Credentials)\n- Statistics and reporting\n\n## 🚀 Built With\n\n### Frontend\n\n- Next.js\n- React\n- Tailwind CSS\n- TypeScript\n- NextAuth.js\n\n### Backend\n\n- Java 24\n- Spring Boot\n- Spring Security\n- Spring Data JPA\n- WebSocket\n- Redis\n- PostgreSQL\n- H2 (for development/testing)\n- Lombok\n\n## 🛠️ Project Setup\n\n### Prerequisites \u0026 verification (Windows cmd.exe)\n\nBefore you start, verify the tools required to run the frontend and backend. The commands below are written for Windows `cmd.exe`. If you use PowerShell or a Unix shell, replace `\\` with `/` and execute the appropriate wrapper (for example `./mvnw` on macOS/Linux).\n\nMinimum recommended versions (project was developed with these):\n- Java 24 (required to build/run the backend)\n- Node.js 18+ (Next.js requires a modern Node)\n- pnpm (used to install frontend deps)\n- Docker \u0026 Docker Compose (or Docker Desktop)\n- Git\n\nVerification commands (run in `cmd.exe`) and expected results:\n\n- Java (runtime and compiler):\n  ```bat\n  java -version\n  javac -version\n  ```\n  Expected: shows Java 24 (or compatible JDK). If `java` or `javac` is not found, install a JDK (Adoptium/Temurin, Oracle, or OpenJDK) and ensure JAVA_HOME is set.\n\n- Maven wrapper (optional if you prefer system Maven):\n  ```bat\n  .\\mvnw.cmd -v\n  ```\n  The project ships a Maven wrapper (`mvnw.cmd`) so you do not need Maven installed globally. Running the wrapper prints the Maven version used.\n\n- Docker and Docker Compose (verify containers):\n  ```bat\n  docker --version\n  docker compose version\n  docker ps\n  ```\n  Expected: Docker running and `docker ps` lists active containers. On Windows, Docker Desktop with WSL2 is recommended.\n\n- Node / npm / pnpm:\n  ```bat\n  node -v\n  npm -v\n  pnpm -v\n  ```\n  If `pnpm` is missing, install it with:\n  ```bat\n  npm install -g pnpm\n  ```\n\n- Git:\n  ```bat\n  git --version\n  ```\n\nQuick diagnostic (copy and paste into `cmd.exe` to run basic checks):\n\n```bat\njava -version\njavac -version\n.\\mvnw.cmd -v\nnode -v\nnpm -v\npnpm -v || echo pnpm not found\ndocker --version\ndocker compose version\ndocker ps\ngit --version\n```\n\nCommon troubleshooting tips\n- Java errors: make sure JAVA_HOME points to a JDK installation and that `java`/`javac` are on PATH. On Windows you can set JAVA_HOME in System Properties → Environment Variables.\n- mvnw permission or execution problems: use `mvnw.cmd` on Windows (`.\\mvnw.cmd spring-boot:run`). On Unix/macOS use `./mvnw spring-boot:run`.\n- Docker on Windows: install Docker Desktop and enable WSL2 backend. Ensure the Docker service is running and you have sufficient permissions.\n- Port conflicts: default ports are 3000 (frontend), 8080 (backend), 5432 (Postgres), 6379 (Redis). If any port is busy, stop the occupying service or change the port in the corresponding config.\n- pnpm / Node problems: ensure Node and pnpm are compatible with the Next.js version used. If builds fail, try clearing pnpm cache (`pnpm store prune`) and reinstalling (`pnpm install`).\n\n### Frontend\n\n1. Copy `.env.example` to `.env.local` and adjust values as needed.\n2. Install dependencies and start the development server (Windows `cmd.exe`):\n   ```bat\n   cd client\n   pnpm install\n   pnpm dev\n   ```\n\n### Backend\n\n1. Start database and Redis using Docker Compose:\n   ```bat\n   cd server\n   docker compose up -d\n   ```\n2. Start the backend server (Windows):\n   ```bat\n   cd server\n   .\\mvnw.cmd spring-boot:run\n   ```\n\n   On macOS/Linux use:\n   ```bash\n   ./mvnw spring-boot:run\n   ```\n\n## 🗂️ Folder Structure\n\n```\n.\n├── client\n│   ├── node_modules\n│   ├── public\n│   ├── src\n│   │   ├── @types\n│   │   ├── actions\n│   │   ├── app\n│   │   ├── components\n│   │   ├── helpers\n│   │   ├── providers\n│   │   ├── utils\n│   │   ├── auth.ts\n│   │   └── middleware.ts\n│   ├── .env.local\n│   ├── .gitignore\n│   ├── .prettierignore\n│   ├── .prettierrc\n│   ├── eslint.config.mjs\n│   ├── next.config.ts\n│   ├── next-env.d.ts\n│   ├── package.json\n│   ├── pnpm-lock.yaml\n│   ├── pnpm-workspace.yaml\n│   ├── postcss.config.mjs\n│   ├── README.md\n│   └── tsconfig.json\n├── server\n│   ├── .idea\n│   ├── .mvn\n│   ├── src\n│   │   ├── main\n│   │   │   ├── java\n│   │   │   │   └── com\n│   │   │   │       └── barataribeiro\n│   │   │   │           └── taskr\n│   │   │   │               ├── activity\n│   │   │   │               ├── admin\n│   │   │   │               ├── authentication\n│   │   │   │               ├── comment\n│   │   │   │               ├── config\n│   │   │   │               ├── exceptions\n│   │   │   │               ├── helpers\n│   │   │   │               ├── membership\n│   │   │   │               ├── notification\n│   │   │   │               ├── project\n│   │   │   │               ├── stats\n│   │   │   │               ├── task\n│   │   │   │               ├── user\n│   │   │   │               ├── utils\n│   │   │   │               └── ServerApplication.java\n│   │   │   └── main.iml\n│   │   ├── test\n│   │   │   ├── java\n│   │   │   │   └── com\n│   │   │   │       └── barataribeiro\n│   │   │   │           └── taskr\n│   │   │   │               ├── authentication\n│   │   │   │               ├── comment\n│   │   │   │               ├── config\n│   │   │   │               │   └── security\n│   │   │   │               ├── exceptions\n│   │   │   │               ├── membership\n│   │   │   │               ├── notification\n│   │   │   │               ├── project\n│   │   │   │               ├── stats\n│   │   │   │               ├── task\n│   │   │   │               ├── user\n│   │   │   │               ├── utils\n│   │   │   │               └── ServerApplicationTests.java\n│   │   │   └── test.iml\n│   ├── target\n│   ├── .gitattributes\n│   ├── .gitignore\n│   ├── compose.yml\n│   ├── HELP.md\n│   ├── mvnw\n│   ├── mvnw.cmd\n│   ├── pom.xml\n│   └── taskr.iml\n```\n\n## 🙌 Contributing\n\nContributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.\n\n## 📜 License\n\nThis project is free software available under the [GPLv3](LICENSE) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarata-ribeiro%2Ftaskr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbarata-ribeiro%2Ftaskr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarata-ribeiro%2Ftaskr/lists"}