{"id":44402852,"url":"https://github.com/redhat-appdev-practice/tekton-lab","last_synced_at":"2026-02-12T06:29:23.592Z","repository":{"id":188586170,"uuid":"674307736","full_name":"redhat-appdev-practice/tekton-lab","owner":"redhat-appdev-practice","description":"Backing code for the Tekton Lab","archived":false,"fork":false,"pushed_at":"2023-08-31T16:29:48.000Z","size":81,"stargazers_count":1,"open_issues_count":0,"forks_count":15,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-01-28T09:59:06.424Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/redhat-appdev-practice.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}},"created_at":"2023-08-03T16:12:02.000Z","updated_at":"2024-06-05T14:11:02.000Z","dependencies_parsed_at":"2023-08-16T01:46:18.721Z","dependency_job_id":"c5905d68-14ed-4b91-95cf-3da31d63726e","html_url":"https://github.com/redhat-appdev-practice/tekton-lab","commit_stats":null,"previous_names":["redhat-appdev-practice/tekton-lab"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/redhat-appdev-practice/tekton-lab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redhat-appdev-practice%2Ftekton-lab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redhat-appdev-practice%2Ftekton-lab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redhat-appdev-practice%2Ftekton-lab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redhat-appdev-practice%2Ftekton-lab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/redhat-appdev-practice","download_url":"https://codeload.github.com/redhat-appdev-practice/tekton-lab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redhat-appdev-practice%2Ftekton-lab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29360644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T01:03:07.613Z","status":"online","status_checked_at":"2026-02-12T02:00:06.911Z","response_time":55,"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":[],"created_at":"2026-02-12T06:29:23.058Z","updated_at":"2026-02-12T06:29:23.587Z","avatar_url":"https://github.com/redhat-appdev-practice.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Getting started with Quarkus\n\nThis is a minimal CRUD service exposing a couple of endpoints over REST.\n\nUnder the hood, this demo uses:\n\n- RESTEasy to expose the REST endpoints\n- REST-assured and JUnit 5 for endpoint testing\n\n## Requirements\n\nTo compile and run this demo you will need:\n\n- JDK 11+\n- GraalVM\n\n### Configuring GraalVM and JDK 11+\n\nMake sure that both the `GRAALVM_HOME` and `JAVA_HOME` environment variables have\nbeen set, and that a JDK 11+ `java` command is on the path.\n\nSee the [Building a Native Executable guide](https://quarkus.io/guides/building-native-image-guide)\nfor help setting up your environment.\n\n## Building the application\n\nLaunch the Maven build on the checked out sources of this demo:\n\n\u003e ./mvnw package\n\n### Live coding with Quarkus\n\nThe Maven Quarkus plugin provides a development mode that supports\nlive coding. To try this out:\n\n\u003e ./mvnw quarkus:dev\n\nThis command will leave Quarkus running in the foreground listening on port 8080.\n\n1. Visit the default endpoint: [http://127.0.0.1:8080](http://127.0.0.1:8080).\n    - Make a simple change to [src/main/resources/META-INF/resources/index.html](src/main/resources/META-INF/resources/index.html) file.\n    - Refresh the browser to see the updated page.\n2. Visit the `/hello` endpoint: [http://127.0.0.1:8080/hello](http://127.0.0.1:8080/hello)\n    - Update the response in [src/main/java/org/acme/quickstart/GreetingResource.java](src/main/java/org/acme/quickstart/GreetingResource.java). Replace `hello` with `hello there` in the `hello()` method.\n    - Refresh the browser. You should now see `hello there`.\n    - Undo the change, so the method returns `hello` again.\n    - Refresh the browser. You should now see `hello`.\n\n### Run Quarkus in JVM mode\n\nWhen you're done iterating in developer mode, you can run the application as a\nconventional jar file.\n\nFirst compile it:\n\n\u003e ./mvnw package\n\nThen run it:\n\n\u003e java -jar ./target/quarkus-app/quarkus-run.jar\n\nHave a look at how fast it boots, or measure the total native memory consumption.\n\n### Run Quarkus as a native executable\n\nYou can also create a native executable from this application without making any\nsource code changes. A native executable removes the dependency on the JVM:\neverything needed to run the application on the target platform is included in\nthe executable, allowing the application to run with minimal resource overhead.\n\nCompiling a native executable takes a bit longer, as GraalVM performs additional\nsteps to remove unnecessary codepaths. Use the  `native` profile to compile a\nnative executable:\n\n\u003e ./mvnw package -Dnative\n\nAfter getting a cup of coffee, you'll be able to run this executable directly:\n\n\u003e ./target/getting-started-1.0.0-SNAPSHOT-runner\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredhat-appdev-practice%2Ftekton-lab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredhat-appdev-practice%2Ftekton-lab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredhat-appdev-practice%2Ftekton-lab/lists"}