{"id":35203896,"url":"https://github.com/codbex/codbex-hades","last_synced_at":"2026-02-09T11:01:16.610Z","repository":{"id":130750216,"uuid":"562044411","full_name":"codbex/codbex-hades","owner":"codbex","description":"Database Management Platform","archived":false,"fork":false,"pushed_at":"2026-01-21T15:40:08.000Z","size":570,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-01-22T02:30:06.903Z","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-11-05T05:56:35.000Z","updated_at":"2026-01-21T15:41:44.000Z","dependencies_parsed_at":"2023-04-05T03:17:28.971Z","dependency_job_id":"93674597-1b78-4786-9089-db51c54d790d","html_url":"https://github.com/codbex/codbex-hades","commit_stats":null,"previous_names":[],"tags_count":137,"template":false,"template_full_name":null,"purl":"pkg:github/codbex/codbex-hades","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-hades","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-hades/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-hades/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-hades/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codbex","download_url":"https://codeload.github.com/codbex/codbex-hades/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-hades/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29262861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T04:11:57.159Z","status":"ssl_error","status_checked_at":"2026-02-09T04:11:56.117Z","response_time":56,"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":"2025-12-29T13:04:09.285Z","updated_at":"2026-02-09T11:01:16.229Z","avatar_url":"https://github.com/codbex.png","language":"Java","readme":"# Hades by codbex\n\n[![Build Status](https://github.com/codbex/codbex-hades/actions/workflows/build.yaml/badge.svg)](https://github.com/codbex/codbex-hades/actions/workflows/build.yaml)\n[![Eclipse License](https://img.shields.io/badge/License-EPL%202.0-brightgreen.svg)](https://github.com/codbex/codbex-hades/blob/main/LICENSE)\n[![Maven Central](https://img.shields.io/maven-central/v/com.codbex.hades/codbex-hades-application.svg)](https://central.sonatype.com/namespace/com.codbex.hades)\n\nHades Edition contains database management standard components.\n\nIt is good for exploration the database instances, schemes and artefacts. It is also capable of exporting, importing and\ntransferring data sets.\n\n\u003c!-- TOC --\u003e\n\n* [Hades by codbex](#hades-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        * [Configuration Options](#configuration-options)\n            * [Datasources](#datasources)\n            * [Memory](#memory)\n            * [Log Levels](#log-levels)\n            * [Timeouts](#timeouts)\n            * [Limits](#limits)\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-hades:latest'\n  export CONTAINER_NAME='hades'\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-hades-*.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-hades-*.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\n#### Configuration Options\n\n##### Datasources\n\n    DIRIGIBLE_DATABASE_CUSTOM_DATASOURCES=MYDB1,MYDB2\n    MYDB1_DRIVER=(JDBC driver)\n    MYDB1_URL=(URL depending on the JDBC driver format)\n    MYDB1_USERNAME=(base64 encoded username)\n    MYDB1_PASSWORD=(base64 encoded password)\n    MYDB2_DRIVER=...\n\n##### Memory\n\n    JAVA_TOOL_OPTIONS=\"-XX:MinRAMPercentage=80.0 -XX:MaxRAMPercentage=90.0\"\n\n##### Log Levels\n\n    logging.level.org.springframework=DEBUG\n    logging.level.org.eclipse.dirigible=DEBUG\n\n##### Timeouts\n\n    spring.datasource.hikari.connectionTimeout=\"3600000\"\n    spring.mvc.async.request-timeout=\"3600000\"\n\n##### Limits\n\n    DIRIGIBLE_DATABASE_DEFAULT_QUERY_LIMIT=\"10000000\"\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodbex%2Fcodbex-hades","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodbex%2Fcodbex-hades","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodbex%2Fcodbex-hades/lists"}