{"id":15379188,"url":"https://github.com/manolo/town-hall","last_synced_at":"2026-02-05T17:30:21.494Z","repository":{"id":157848417,"uuid":"626793384","full_name":"manolo/town-hall","owner":"manolo","description":"Vaadin Builders Challenge Team 3 (Town Hall)","archived":false,"fork":false,"pushed_at":"2023-04-12T19:07:22.000Z","size":617,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-18T11:54:35.485Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manolo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-04-12T07:09:18.000Z","updated_at":"2023-04-12T19:08:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"f283bb82-8ee3-45cb-ba3e-dce7637820be","html_url":"https://github.com/manolo/town-hall","commit_stats":{"total_commits":46,"total_committers":5,"mean_commits":9.2,"dds":0.5869565217391304,"last_synced_commit":"d98e4ffe83003afa4b309181020f1b6fed3ce2ce"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manolo%2Ftown-hall","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manolo%2Ftown-hall/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manolo%2Ftown-hall/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manolo%2Ftown-hall/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manolo","download_url":"https://codeload.github.com/manolo/town-hall/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239793064,"owners_count":19697893,"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":[],"created_at":"2024-10-01T14:18:30.804Z","updated_at":"2026-02-05T17:30:21.429Z","avatar_url":"https://github.com/manolo.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Experiment a Town Hall App developed in Hilla + React\n\nThis project still a work in progress.\n\n__NOTE__: If you want to experiment with SSO in google, you need to configure `src/main/resources/application.properties`\n\n## Running the application\n\nThe project is a standard Maven project. To run it from the command line,\ntype `mvnw` (Windows), or `./mvnw` (Mac \u0026 Linux), then open\nhttp://localhost:8080 in your browser.\n\nYou can also import the project to your IDE of choice as you would with any\nMaven project.\n\n## Deploying to Production\n\nTo create a production build, call `mvnw clean package -Pproduction` (Windows),\nor `./mvnw clean package -Pproduction` (Mac \u0026 Linux).\nThis will build a JAR file with all the dependencies and front-end resources,\nready to be deployed. The file can be found in the `target` folder after the build completes.\n\nOnce the JAR file is built, you can run it using\n`java -jar target/myapp-1.0-SNAPSHOT.jar` (NOTE, replace\n`myapp-1.0-SNAPSHOT.jar` with the name of your jar).\n\n## Docker\nYou need Docker installed in your computer and running\n\n1. To create a docker image with the application run\n```\ndocker build -t town-hall .\n```\n2. To run the app in your local execute\n```\ndocker run -it -p 8080:8080 --rm town-hall:latest\n```\n3. Then you can access your app in http://localhost:8080\n\n\n## Project structure\n\n\u003ctable style=\"width:100%; text-align: left;\"\u003e\n  \u003ctr\u003e\u003cth\u003eDirectory\u003c/th\u003e\u003cth\u003eDescription\u003c/th\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003e\u003ccode\u003efrontend/\u003c/code\u003e\u003c/td\u003e\u003ctd\u003eClient-side source directory\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u003ccode\u003eindex.html\u003c/code\u003e\u003c/td\u003e\u003ctd\u003eHTML template\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u003ccode\u003eindex.ts\u003c/code\u003e\u003c/td\u003e\u003ctd\u003eFrontend\nentrypoint, bootstraps a React application\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u003ccode\u003eroutes.tsx\u003c/code\u003e\u003c/td\u003e\u003ctd\u003eReact Router routes definition\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u003ccode\u003eMainLayout.tsx\u003c/code\u003e\u003c/td\u003e\u003ctd\u003eMain\nlayout component, contains the navigation menu, uses \u003ca href=\"https://hilla.dev/docs/react/components/app-layout\"\u003e\nApp Layout\u003c/a\u003e\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u003ccode\u003eviews/\u003c/code\u003e\u003c/td\u003e\u003ctd\u003eUI view\ncomponents\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u003ccode\u003ethemes/\u003c/code\u003e\u003c/td\u003e\u003ctd\u003eCustom\nCSS styles\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003e\u003ccode\u003esrc/main/java/\u0026lt;groupId\u0026gt;/\u003c/code\u003e\u003c/td\u003e\u003ctd\u003eServer-side\nsource directory, contains the server-side Java views\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u003ccode\u003eApplication.java\u003c/code\u003e\u003c/td\u003e\u003ctd\u003eServer entry-point\u003c/td\u003e\u003c/tr\u003e\n\u003c/table\u003e\n\n## Useful links\n\n- Read the documentation at [hilla.dev/docs](https://hilla.dev/docs/).\n- Ask questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/hilla) or join our [Discord channel](https://discord.gg/MYFq5RTbBn).\n- Report issues, create pull requests in [GitHub](https://github.com/vaadin/hilla).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanolo%2Ftown-hall","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanolo%2Ftown-hall","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanolo%2Ftown-hall/lists"}