{"id":22561565,"url":"https://github.com/tedwon/platypus","last_synced_at":"2026-04-05T20:33:39.441Z","repository":{"id":262254520,"uuid":"881314489","full_name":"tedwon/platypus","owner":"tedwon","description":"[Clean code that works] A full-stack CRUD web app with a React frontend and Java + Kotlin backend using Quarkus and Spring Boot, designed for end-to-end development practice with database integration.","archived":false,"fork":false,"pushed_at":"2025-01-03T20:48:50.000Z","size":537,"stargazers_count":1,"open_issues_count":9,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T12:44:35.550Z","etag":null,"topics":["java","kotlin","material-ui","nextjs","quarkus","react"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/tedwon.png","metadata":{"files":{"readme":"README.adoc","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":"2024-10-31T10:26:22.000Z","updated_at":"2024-11-25T00:55:49.000Z","dependencies_parsed_at":"2024-12-07T00:19:58.254Z","dependency_job_id":"a275986b-83ec-41c5-aaf5-60faf9cd7532","html_url":"https://github.com/tedwon/platypus","commit_stats":null,"previous_names":["tedwon/platypus"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/tedwon/platypus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedwon%2Fplatypus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedwon%2Fplatypus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedwon%2Fplatypus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedwon%2Fplatypus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tedwon","download_url":"https://codeload.github.com/tedwon/platypus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedwon%2Fplatypus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31449532,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T15:22:31.103Z","status":"ssl_error","status_checked_at":"2026-04-05T15:22:00.205Z","response_time":75,"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":["java","kotlin","material-ui","nextjs","quarkus","react"],"created_at":"2024-12-07T22:07:56.802Z","updated_at":"2026-04-05T20:33:39.402Z","avatar_url":"https://github.com/tedwon.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":":author:         Ted Won\n:email:          iamtedwon@gmail.com\n:toc:            left\n\n= https://github.com/tedwon/platypus[Platypus]\n\n== Platypus\n\nhttps://github.com/tedwon/platypus[Platypus] is a full-stack CRUD web app with a React frontend and Java + Kotlin backend using Quarkus and Spring Boot, designed for end-to-end development practice with database integration.\n\nhttps://github.com/tedwon/platypus\n\n== Platypus Backend\n\nBackend API server based on Quarkus in Kotlin and Java\n\n=== Creating platypus-backend\n\n* Install quarkus CLI via https://quarkus.io/get-started/\n* Create a new quarkus application\n** https://quarkus.io/guides/getting-started#bootstrapping-the-project\n\n[source,bash,options=\"nowrap\"]\n----\n$ quarkus create app --maven --kotlin --java=21 --refresh --verbose \\\n    --extension='kotlin,resteasy-reactive,resteasy-reactive-jackson,smallrye-openapi,hibernate-orm,hibernate-orm-panache,hibernate-orm-rest-data-panache,hibernate-orm-panache-kotlin,jdbc-postgresql,rest-client-jackson,cache,hibernate-search-orm-elasticsearch' --package-name=au.platypus.quarkus \\\n    platypus:platypus-backend-quarkus:0.1.0-SNAPSHOT\n$ cd platypus-backend\n----\n\n==== Change the default port:\n\n* Modifying the `platypus-backend/src/main/resources/application.properties` file:\n\n[source,bash,options=\"nowrap\"]\n----\nquarkus.http.port=2412\n----\n\n* Visit http://localhost:2412\n\n== Platypus Frontend\n\nFrontend web UI server built with Next.js and https://mui.com/material-ui/getting-started/[Material UI (MUI)] in React, utilizing TypeScript for enhanced type safety and maintainability.\n\n=== Creating platypus-frontend\n\n* Install Node.js as guided in https://nextjs.org/docs/getting-started/installation\n* Create a new Next.js app\n\n[source,bash,options=\"nowrap\"]\n----\n$ npx create-next-app@latest\n----\n\n==== Install packages\n\n[source,bash,options=\"nowrap\"]\n----\n$ cd platypus-frontend\n$ npm install @mui/material @emotion/react @mui/x-data-grid @emotion/styled @mui/icons-material dayjs\n----\n\n==== Change the default port in a Next.js application:\n\n* Modifying the `platypus-frontend/package.json` file:\n\n[source,bash,options=\"nowrap\"]\n----\n\"scripts\": {\n  \"dev\": \"next dev -p 2612\"\n}\n----\n\n==== Run platypus-frontend app in dev mode\n\n* https://nextjs.org/docs/getting-started/installation#run-the-development-server\n\n[source,bash,options=\"nowrap\"]\n----\ncd platypus-frontend\nnpm run dev\n----\n\n* Visit http://localhost:2612\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftedwon%2Fplatypus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftedwon%2Fplatypus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftedwon%2Fplatypus/lists"}