{"id":18237839,"url":"https://github.com/nc5324/nanotx","last_synced_at":"2026-04-29T12:33:41.113Z","repository":{"id":261047353,"uuid":"883102491","full_name":"NC5324/nanotx","owner":"NC5324","description":"Project for university - Parts marketplace app where buyers can create requests and suppliers can create offers for them. Tech stack: Angular, Java, Quarkus, Hibernate, PostgreSQL. Includes Stripe integration for payments and also a generic filtering API based on JPA Criteria Builder for easy \u0026 flexible complex filtering.","archived":false,"fork":false,"pushed_at":"2024-11-04T11:42:33.000Z","size":737,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-14T12:29:45.043Z","etag":null,"topics":["ag-grid","angular","flyway","java","postgresql","primeng","quarkus","stripe-payments"],"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/NC5324.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}},"created_at":"2024-11-04T11:34:11.000Z","updated_at":"2024-11-04T11:42:37.000Z","dependencies_parsed_at":"2024-11-04T12:43:25.591Z","dependency_job_id":null,"html_url":"https://github.com/NC5324/nanotx","commit_stats":null,"previous_names":["nc5324/nanotx"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NC5324%2Fnanotx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NC5324%2Fnanotx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NC5324%2Fnanotx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NC5324%2Fnanotx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NC5324","download_url":"https://codeload.github.com/NC5324/nanotx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247877330,"owners_count":21011152,"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":["ag-grid","angular","flyway","java","postgresql","primeng","quarkus","stripe-payments"],"created_at":"2024-11-05T03:01:12.593Z","updated_at":"2026-04-29T12:33:41.063Z","avatar_url":"https://github.com/NC5324.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nanotx\n\nThis project uses Quarkus, the Supersonic Subatomic Java Framework.\n\nIf you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .\n\n## Prerequisites\n- Java 17\n- Docker Desktop\n\n## Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n```shell script\n./mvnw compile quarkus:dev\n```\n\n\u003e **_NOTE:_**  Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.\n\n## Packaging and running the application\n\nThe application can be packaged using:\n```shell script\n./mvnw package\n```\nIt produces the `quarkus-run.jar` file in the `target/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `target/quarkus-app/lib/` directory.\n\nThe application is now runnable using `java -jar target/quarkus-app/quarkus-run.jar`.\n\nIf you want to build an _über-jar_, execute the following command:\n```shell script\n./mvnw package -Dquarkus.package.type=uber-jar\n```\n\nThe application, packaged as an _über-jar_, is now runnable using `java -jar target/*-runner.jar`.\n\n## Creating a native executable\n\nYou can create a native executable using: \n```shell script\n./mvnw package -Pnative\n```\n\nOr, if you don't have GraalVM installed, you can run the native executable build in a container using: \n```shell script\n./mvnw package -Pnative -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./target/nanotx-1.0.0-SNAPSHOT-runner`\n\nIf you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.\n\n## Related Guides\n\n- Hibernate ORM ([guide](https://quarkus.io/guides/hibernate-orm)): Define your persistent model with Hibernate ORM and Jakarta Persistence\n- Flyway ([guide](https://quarkus.io/guides/flyway)): Handle your database schema migrations\n- YAML Configuration ([guide](https://quarkus.io/guides/config-yaml)): Use YAML to configure your Quarkus application\n- JDBC Driver - PostgreSQL ([guide](https://quarkus.io/guides/datasource)): Connect to the PostgreSQL database via JDBC\n- Hibernate Validator ([guide](https://quarkus.io/guides/validation)): Validate object properties (field, getter) and method parameters for your beans (REST, CDI, Jakarta Persistence)\n- Mailer ([guide](https://quarkus.io/guides/mailer)): Send emails\n- Security JPA ([guide](https://quarkus.io/guides/security-getting-started)): Secure your applications with username/password stored in a database via Jakarta Persistence\n- SmallRye JWT Build ([guide](https://quarkus.io/guides/security-jwt-build)): Create JSON Web Token with SmallRye JWT Build API\n- Quinoa ([guide](https://quarkiverse.github.io/quarkiverse-docs/quarkus-quinoa/dev/index.html)): Quinoa is a Quarkus extension which eases the development, the build and serving single page apps or web components (built with NodeJS: React, Angular, Vue, Lit, …) alongside other Quarkus services (REST, GraphQL, Security, Events, ...).\n\nLive code the backend and frontend together with close to no configuration. When enabled in development mode, Quinoa will start the UI live coding server provided by the target framework and forward relevant requests to it. In production mode, Quinoa will run the build and process the generated files to serve them at runtime.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnc5324%2Fnanotx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnc5324%2Fnanotx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnc5324%2Fnanotx/lists"}