{"id":36418226,"url":"https://github.com/codbex/codbex-rhea","last_synced_at":"2026-02-18T09:16:01.201Z","repository":{"id":63430813,"uuid":"519351579","full_name":"codbex/codbex-rhea","owner":"codbex","description":"Modelling and Applications Generation Platform","archived":false,"fork":false,"pushed_at":"2026-02-09T09:03:44.000Z","size":1036,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-02-09T13:55:49.704Z","etag":null,"topics":["platform"],"latest_commit_sha":null,"homepage":"https://codbex.com","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codbex.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-07-29T21:16:25.000Z","updated_at":"2026-02-09T08:50:45.000Z","dependencies_parsed_at":"2023-02-10T16:30:25.056Z","dependency_job_id":"f739bd23-2b5e-45bc-998a-b66f1b145946","html_url":"https://github.com/codbex/codbex-rhea","commit_stats":null,"previous_names":[],"tags_count":72,"template":false,"template_full_name":null,"purl":"pkg:github/codbex/codbex-rhea","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-rhea","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-rhea/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-rhea/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-rhea/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codbex","download_url":"https://codeload.github.com/codbex/codbex-rhea/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-rhea/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29574181,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"last_error":"SSL_read: 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":["platform"],"created_at":"2026-01-11T17:00:59.801Z","updated_at":"2026-02-18T09:16:01.176Z","avatar_url":"https://github.com/codbex.png","language":"Java","readme":"# Rhea by codbex\n\n[![Build Status](https://github.com/codbex/codbex-rhea/actions/workflows/build.yaml/badge.svg)](https://github.com/codbex/codbex-rhea/actions/workflows/build.yaml)\n[![Eclipse License](https://img.shields.io/badge/License-EPL%202.0-brightgreen.svg)](https://github.com/codbex/codbex-rhea/blob/main/LICENSE)\n[![Maven Central](https://img.shields.io/maven-central/v/com.codbex.rhea/codbex-rhea-application.svg)](https://central.sonatype.com/namespace/com.codbex.rhea)\n\nRhea Edition contains entity and forms modeling standard components.\n\nIt is good for Model Driven Architecture related development models.\n\n\u003c!-- TOC --\u003e\n* [Rhea by codbex](#rhea-by-codbex)\n  * [Run steps](#run-steps)\n    * [Start using Docker and released image](#start-using-docker-and-released-image)\n    * [Start using Docker and local sources](#start-using-docker-and-local-sources)\n      * [Build the project jar](#build-the-project-jar)\n      * [Build and run docker image locally](#build-and-run-docker-image-locally)\n    * [Java standalone application](#java-standalone-application)\n      * [Start the application](#start-the-application)\n      * [Start the application **in debug** with debug port `8000`](#start-the-application-in-debug-with-debug-port-8000)\n      * [Spring profiles](#spring-profiles)\n    * [Run unit tests](#run-unit-tests)\n    * [Run integration tests](#run-integration-tests)\n    * [Run all tests](#run-all-tests)\n    * [Format the code](#format-the-code)\n  * [Access the application](#access-the-application)\n  * [REST API](#rest-api)\n\u003c!-- TOC --\u003e\n\n## Run steps\n\n__Prerequisites:__\n- Export the following variables before executing the steps\n  ```shell\n  export GIT_REPO_FOLDER='\u003cpath-to-the-git-repo\u003e'\n  export IMAGE='ghcr.io/codbex/codbex-rhea:latest'\n  export CONTAINER_NAME='rhea'\n  ```\n\n### Start using Docker and released image\n\n```shell\n# optionally remove the existing container with that name\ndocker rm -f \"$CONTAINER_NAME\"\ndocker pull \"$IMAGE\"\n\ndocker run --name \"$CONTAINER_NAME\" -p 80:80 \"$IMAGE\"\n```\n\n---\n\n### Start using Docker and local sources\n#### Build the project jar\n```shell\ncd $GIT_REPO_FOLDER\nmvn -T 1C clean install -P quick-build\n```\n\n#### Build and run docker image locally\n\n__Prerequisites:__ [Build the project jar](#build-the-project-jar)\n\n  ```shell\n  cd \"$GIT_REPO_FOLDER/application\"\n  \n  docker build . --tag \"$IMAGE\"\n  \n  # optionally remove the existing container with that name\n  docker rm -f \"$CONTAINER_NAME\"\n\n  docker run --name \"$CONTAINER_NAME\" -p 80:80 \"$IMAGE\"\n  ```\n\n--- \n\n### Java standalone application\n__Prerequisites:__ [Build the project jar](#build-the-project-jar)\n\n#### Start the application\n```shell\ncd \"$GIT_REPO_FOLDER\"\n\njava \\\n    --add-opens=java.base/java.lang=ALL-UNNAMED \\\n    --add-opens=java.base/java.lang.reflect=ALL-UNNAMED \\\n    --add-opens=java.base/java.nio=ALL-UNNAMED \\\n    -jar application/target/codbex-rhea-*.jar\n```\n\n#### Start the application **in debug** with debug port `8000`\n```shell\ncd \"$GIT_REPO_FOLDER\"\n\nexport PHOEBE_AIRFLOW_WORK_DIR=\"$AIRFLOW_WORK_DIR\"\njava \\\n    -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000 \\\n    --add-opens=java.base/java.lang=ALL-UNNAMED \\\n    --add-opens=java.base/java.lang.reflect=ALL-UNNAMED \\\n    --add-opens=java.base/java.nio=ALL-UNNAMED \\\n    -jar application/target/codbex-rhea-*.jar\n```\n\n#### Spring profiles\n- Eclipse Dirigible profiles\n  To activate Eclipse Dirigible, you have to add profiles `common` and `app-default` explicitly.\u003cbr\u003e\n  Example for profile `snowflake`: `SPRING_PROFILES_ACTIVE=common,snowflake,app-default`\n\n---\n\n### Run unit tests\n\n```shell\ncd \"$GIT_REPO_FOLDER\"\nmvn clean install -P unit-tests\n```\n\n---\n\n### Run integration tests\n\n```shell\ncd \"$GIT_REPO_FOLDER\"\nmvn clean install -P integration-tests\n```\n\n---\n\n### Run all tests\n\n```shell\ncd \"$GIT_REPO_FOLDER\"\nmvn clean install -P tests\n```\n\n---\n\n### Format the code\n\n```shell\ncd \"$GIT_REPO_FOLDER\"\nmvn verify -P format\n```\n\n---\n\n## Access the application\n- Open URL [http://localhost:80](http://localhost:80)\n- Login with the default credentials username `admin` and password `admin`\n\n## REST API\n\n```\nhttp://localhost/swagger-ui/index.html\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodbex%2Fcodbex-rhea","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodbex%2Fcodbex-rhea","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodbex%2Fcodbex-rhea/lists"}