{"id":36602753,"url":"https://github.com/rife2/rife2-bld-hello","last_synced_at":"2026-01-12T08:40:23.388Z","repository":{"id":160073625,"uuid":"629585144","full_name":"rife2/rife2-bld-hello","owner":"rife2","description":"Bootstrap project structure to create a RIFE2 web application with bld","archived":false,"fork":false,"pushed_at":"2025-02-25T02:10:35.000Z","size":255,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T03:22:09.481Z","etag":null,"topics":["bld","rife2"],"latest_commit_sha":null,"homepage":"https://rife2.com","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rife2.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}},"created_at":"2023-04-18T15:52:44.000Z","updated_at":"2025-02-25T02:10:38.000Z","dependencies_parsed_at":"2023-07-06T17:45:15.534Z","dependency_job_id":"3887f61b-1aef-47f9-a95d-4daa4d17765b","html_url":"https://github.com/rife2/rife2-bld-hello","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/rife2/rife2-bld-hello","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Frife2-bld-hello","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Frife2-bld-hello/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Frife2-bld-hello/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Frife2-bld-hello/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rife2","download_url":"https://codeload.github.com/rife2/rife2-bld-hello/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Frife2-bld-hello/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28337599,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"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":["bld","rife2"],"created_at":"2026-01-12T08:40:23.328Z","updated_at":"2026-01-12T08:40:23.382Z","avatar_url":"https://github.com/rife2.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Java](https://img.shields.io/badge/java-17%2B-blue)](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)\n[![bld](https://img.shields.io/badge/2.2.1-FA9052?label=bld\u0026labelColor=2392FF)](https://rife2.com/bld)\n[![GitHub CI](https://github.com/rife2/rife2-bld-hello/actions/workflows/bld.yml/badge.svg)](https://github.com/rife2/rife2-bld-hello/actions/workflows/bld.yml)\n\n# RIFE2 bootstrap project structure\n\nThis project helps you to get started with a RIFE2 web application and [`bld`](https://rife2.com/bld).\n\nYou'll find all the pieces that are explained in the first sections of\n[the documentation](https://github.com/rife2/rife2/wiki) neatly contained\nin this one project.\n\nIt's ready to run, package and deploy ... and for you to have fun developing\nin a very iterative, intuitive and rewarding way.\n\nFor all things RIFE2, head on to the project website:\n[https://rife2.com](https://rife2.com)\n\nFor more details on the `bld` build system, head on to that section:\n[https://rife2.com/bld](https://rife2.com/bld)\n\n## Run the tests\n\n```bash\n./bld clean compile test\n```\n\n## Run the server\n\n```bash\n./bld clean compile run\n```\n\nGo to:\n\n[http://localhost:8080/](http://localhost:8080/)\n\n## Deploy the app\n\n```bash\n./bld clean war\n```\n\nThe resulting archive will be in:\n`build/dist`\n\nIf you use any of the byte-code instrumented features , like continuations,\nmetadata merging or lazy-loaded database entities, you'll need to launch your\nservlet container with the `-javaagent:[path-to]/rife2-[version]-agent.jar`\nargument. Exactly how is dependent on each servlet container.\n\nFor example, for Apache Tomcat this is typically done by customizing the\n`CATALINA_OPTS` environment variable, for instance:\n\n```shell\nCATALINA_OPTS=\"-javaagent:[path-to]/rife2-[version]-agent.jar\" ./bin/catalina.sh run\n```\n\nFor Jetty, it could just be an argument of the `java` call:\n\n```shell\njava -javaagent:[path-to]/rife2-[version]-agent.jar -jar $JETTY_HOME/start.jar\n```\n\n## Make an UberJar\n\n```bash\n./bld clean uberjar\n```\n\nThen run it with:\n\n```bash\njava -jar build/dist/hello-0.1.0-uber.jar\n```\n\nIf you use any of the byte-code instrumented features, you'll need to also tell\n`java` to use the RIFE2 agent.\n\nFor example:\n\n```bash\njava -javaagent:[path-to]/rife2-[version]-agent.jar -jar build/dist/hello-0.1.0-uber.jar\n```\n\n## Get in touch\n\nThanks for using RIFE2!\n\nIf you have any questions, suggestions, ideas or just want to chat, feel free\nto post on the [forums](https://forum.uwyn.com), to join\nme on [Discord](https://discord.gg/DZRYPtkb6J) or to connect with me on\n[Mastodon](https://uwyn.net/@gbevin).\n\n\n**Read more in the [full documentation](https://github.com/rife2/rife2/wiki)\nand  [RIFE2 Javadocs](https://rife2.github.io/rife2/).**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frife2%2Frife2-bld-hello","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frife2%2Frife2-bld-hello","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frife2%2Frife2-bld-hello/lists"}