{"id":36412789,"url":"https://github.com/codbex/codbex-gaia","last_synced_at":"2026-04-08T15:00:30.756Z","repository":{"id":164760200,"uuid":"631501337","full_name":"codbex/codbex-gaia","owner":"codbex","description":"Basis Platform for Products","archived":false,"fork":false,"pushed_at":"2026-03-17T08:13:21.000Z","size":312,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-03-17T23:33:04.139Z","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":"2023-04-23T08:06:02.000Z","updated_at":"2026-03-17T07:59:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"efc38845-39a6-4488-9f49-de7e47771a54","html_url":"https://github.com/codbex/codbex-gaia","commit_stats":null,"previous_names":[],"tags_count":85,"template":false,"template_full_name":null,"purl":"pkg:github/codbex/codbex-gaia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-gaia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-gaia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-gaia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-gaia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codbex","download_url":"https://codeload.github.com/codbex/codbex-gaia/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-gaia/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31560476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"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":["platform"],"created_at":"2026-01-11T16:54:29.593Z","updated_at":"2026-04-08T15:00:30.751Z","avatar_url":"https://github.com/codbex.png","language":"Java","readme":"# Gaia by codbex\n\n[![Build Status](https://github.com/codbex/codbex-gaia/actions/workflows/build.yaml/badge.svg)](https://github.com/codbex/codbex-gaia/actions/workflows/build.yaml)\n[![Eclipse License](https://img.shields.io/badge/License-EPL%202.0-brightgreen.svg)](https://github.com/codbex/codbex-gaia/blob/main/LICENSE)\n[![Maven Central](https://img.shields.io/maven-central/v/com.codbex.gaia/codbex-gaia-application.svg)](https://central.sonatype.com/namespace/com.codbex.gaia)\n\nGaia Edition contains all the available backend standard components except the Web IDE ones.\n\nIt is used as a basis platform for products build with and for `codbex` tools and runtimes.\n\n\u003c!-- TOC --\u003e\n\n* [Gaia by codbex](#gaia-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\n              `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\n\u003c!-- TOC --\u003e\n\n## Run steps\n\n__Prerequisites:__\n\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-gaia:latest'\n  export CONTAINER_NAME='gaia'\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\n#### Build the project jar\n\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\n__Prerequisites:__ [Build the project jar](#build-the-project-jar)\n\n#### Start the application\n\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-gaia-*.jar\n```\n\n#### Start the application **in debug** with debug port `8000`\n\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-gaia-*.jar\n```\n\n#### Spring profiles\n\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\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-gaia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodbex%2Fcodbex-gaia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodbex%2Fcodbex-gaia/lists"}