{"id":24793977,"url":"https://github.com/asjordi/webapp-todo","last_synced_at":"2026-04-28T12:05:19.646Z","repository":{"id":230116041,"uuid":"778532498","full_name":"ASJordi/webapp-todo","owner":"ASJordi","description":"TODO App with Java and Jakarta EE","archived":false,"fork":false,"pushed_at":"2025-04-11T19:27:53.000Z","size":2438,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-22T00:57:58.309Z","etag":null,"topics":["docker","docker-compose","jakarta-ee","java","jsp","jstl-tags","mysql","servlet","tomcat-server"],"latest_commit_sha":null,"homepage":"","language":"Java","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/ASJordi.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-27T22:31:25.000Z","updated_at":"2025-04-11T19:27:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"0db53545-6ae4-482d-b3dc-3f01cc516c3a","html_url":"https://github.com/ASJordi/webapp-todo","commit_stats":null,"previous_names":["asjordi/webapp-todo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ASJordi/webapp-todo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ASJordi%2Fwebapp-todo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ASJordi%2Fwebapp-todo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ASJordi%2Fwebapp-todo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ASJordi%2Fwebapp-todo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ASJordi","download_url":"https://codeload.github.com/ASJordi/webapp-todo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ASJordi%2Fwebapp-todo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32379639,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T11:25:28.583Z","status":"ssl_error","status_checked_at":"2026-04-28T11:25:05.435Z","response_time":56,"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":["docker","docker-compose","jakarta-ee","java","jsp","jstl-tags","mysql","servlet","tomcat-server"],"created_at":"2025-01-29T22:30:25.234Z","updated_at":"2026-04-28T12:05:19.619Z","avatar_url":"https://github.com/ASJordi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1 align=\"center\"\u003e\u003ca href=\"https://github.com/ASJordi/webapp-todo\"\u003eTODO App\u003c/a\u003e\u003c/h1\u003e\n\n  \u003cp align=\"center\"\u003eTODO App with Java and Jakarta EE\u003c/p\u003e\n\u003c/div\u003e\n\n## About :computer:\n\nTODO App is a web application to manage tasks and users. It is developed with Java and Jakarta EE. It has a login system, user management, and task management. Tomcat is used as a server.\n\n\u003cimg src=\"src/main/resources/app01.png\" alt=\"app01\" width=\"400\"/\u003e\n\u003cimg src=\"src/main/resources/app02.png\" alt=\"app01\" width=\"400\"/\u003e\n\u003cimg src=\"src/main/resources/app03.png\" alt=\"app01\" width=\"400\"/\u003e\n\n## Stack :hammer_and_wrench:\n\n* Java SE\n* Jakarta EE\n* JSP\n* JSTL\n* CDI\n* Tomcat\n* MySQL\n* Docker\n* Bootstrap\n\n## Installation :gear:\n\n\u003e You can run the application in a Docker container or in your local environment.\n\n\u003e If you don't want to build the application, you can download the Docker image from the [Packages section](https://github.com/ASJordi/webapp-todo/pkgs/container/webapp-todo)\n\n### Docker :whale:\n\n- Build the Docker image\n\n  ```bash\n  docker build -t todo-app .\n  ```\n\n- Run the Docker container\n\n  ```bash\n    docker container run -p 8080:8080 todo-app\n  ```\n  \n- Use `docker-compose` to run the application with MySQL and PhpMyAdmin\n\n  ```bash\n  docker compose up -d\n  ```\n\n\u003e Make sure to create the database with the script in `src/main/resources/db/db.sql` before running the application.\n\n### Local :computer:\n\n- Clone the repository\n\n  ```bash\n  git@github.com:ASJordi/webapp-todo.git\n  ```\n\n- Create a MySQL database with the script in `src/main/resources/db/db.sql`\n\n- Configure the database connection in `src/main/webapp/META-INF/context.xml`\n\n- Install dependencies with Maven\n\n- Configure tomcat to use the MySQL connector\n\n- Run the application with:\n\n  ```bash\n  mvn tomcat7:redeploy\n  ```\n\n## License :page_facing_up:\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n## Contact :email:\n\nJordi Ayala - [@ASJordi](https://twitter.com/ASJordi)\n\nProject Link: [https://github.com/ASJordi/webapp-todo](https://github.com/ASJordi/webapp-todo)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasjordi%2Fwebapp-todo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasjordi%2Fwebapp-todo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasjordi%2Fwebapp-todo/lists"}