{"id":29311438,"url":"https://github.com/thamiraweerakoon/todo-web-application","last_synced_at":"2026-04-27T16:33:06.208Z","repository":{"id":303116139,"uuid":"1012846257","full_name":"ThamiraWeerakoon/Todo-Web-Application","owner":"ThamiraWeerakoon","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-05T19:05:25.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-06T22:41:43.759Z","etag":null,"topics":["docker","fullstack","java","mysql","spring-boot","todo-app","webapp"],"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/ThamiraWeerakoon.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,"zenodo":null}},"created_at":"2025-07-03T01:26:14.000Z","updated_at":"2025-07-05T19:05:28.000Z","dependencies_parsed_at":"2025-07-05T20:25:46.379Z","dependency_job_id":"ad0ca175-238f-424f-aa07-74f2c65f7177","html_url":"https://github.com/ThamiraWeerakoon/Todo-Web-Application","commit_stats":null,"previous_names":["thamiraweerakoon/todo-web-application"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ThamiraWeerakoon/Todo-Web-Application","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThamiraWeerakoon%2FTodo-Web-Application","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThamiraWeerakoon%2FTodo-Web-Application/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThamiraWeerakoon%2FTodo-Web-Application/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThamiraWeerakoon%2FTodo-Web-Application/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ThamiraWeerakoon","download_url":"https://codeload.github.com/ThamiraWeerakoon/Todo-Web-Application/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThamiraWeerakoon%2FTodo-Web-Application/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280832994,"owners_count":26398969,"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","status":"online","status_checked_at":"2025-10-24T02:00:06.418Z","response_time":73,"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":["docker","fullstack","java","mysql","spring-boot","todo-app","webapp"],"created_at":"2025-07-07T08:14:47.329Z","updated_at":"2025-10-24T17:06:08.059Z","avatar_url":"https://github.com/ThamiraWeerakoon.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📝 Todo App — Full Stack (Java + MySQL + Docker)\n\nA simple, modern full-stack Todo Application built with:\n\n- 🔧 Java 17 \u0026 Spring Boot 3\n- 🛢 MySQL (Dockerized)\n- 🌐 HTML/CSS/JS (Vanilla)\n- 🐳 Docker \u0026 Docker Compose\n\n---\n\n## 🚀 Features\n\n- Add and manage tasks\n- Top 5 recent incomplete tasks listed\n- Mark tasks as done\n- REST API built with Spring Boot\n- MySQL-backed persistence layer\n- Fully containerized (backend + frontend + db)\n\n---\n\n## 📦 Project Structure\n\n```bash\ntodo-app/\n├── backend/       # Spring Boot API\n├── frontend/      # HTML/CSS/JS UI\n├── db/            # SQL init (optional)\n├── docker-compose.yml\n├── README.md\n└── .gitignore\n```\n\n---\n\n## 🛠 Setup \u0026 Run\n\n### 🔁 Prerequisites\n- [Docker](https://docs.docker.com/get-docker/)\n- Optional: [Java 17](https://adoptium.net/) and [Maven](https://maven.apache.org/) (for local dev)\n\n### ▶️ Run with Docker Compose\n\n```bash\ndocker-compose up --build\n```\n\nThen access:\n- Frontend: [http://localhost:3000](http://localhost:3000)\n- API: [http://localhost:8080/api/tasks](http://localhost:8080/api/tasks)\n\n---\n\n## ✅ API Endpoints\n\n| Method | Endpoint                 | Description              |\n|--------|--------------------------|--------------------------|\n| GET    | `/api/tasks`             | Get top 5 recent tasks   |\n| POST   | `/api/tasks`             | Create a new task        |\n| PUT    | `/api/tasks/{id}/complete` | Mark task as completed |\n\n---\n\n## 🧪 Testing\n\n### Run Unit \u0026 Integration Tests\n\nIf Maven is installed:\n```bash\ncd backend\nmvn test\n```\n\nOr run tests via Docker:\n```bash\ndocker run --rm -v \"$PWD/backend\":/app -w /app maven:3.9.6-eclipse-temurin-17 mvn test\n```\n\n---\n\n## 📚 Tech Stack\n\n- Java 17, Spring Boot\n- MySQL 8\n- HTML/CSS/JS\n- Docker + Docker Compose\n- JUnit 5, Mockito\n\n---\n\n## 🤝 Contributing\n\nPull requests welcome. For major changes, please open an issue first.\n\n---\n\n## 🙋‍♂️ Author\n\nDeveloped by [Thamira Weerakoon] — [LinkedIn](https://www.linkedin.com/in/thamira-weerakoon-bb43522a4/) | [GitHub](https://github.com/ThamiraWeerakoon)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthamiraweerakoon%2Ftodo-web-application","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthamiraweerakoon%2Ftodo-web-application","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthamiraweerakoon%2Ftodo-web-application/lists"}