{"id":37017312,"url":"https://github.com/codbex/codbex-atlas","last_synced_at":"2026-02-19T15:04:58.853Z","repository":{"id":50324546,"uuid":"476401533","full_name":"codbex/codbex-atlas","owner":"codbex","description":"All-in-One Platform","archived":false,"fork":false,"pushed_at":"2026-01-23T14:24:02.000Z","size":694,"stargazers_count":3,"open_issues_count":3,"forks_count":1,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-01-24T06:05:15.612Z","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-03-31T17:03:14.000Z","updated_at":"2026-01-23T14:19:23.000Z","dependencies_parsed_at":"2023-09-24T09:44:10.956Z","dependency_job_id":"a7c27fd9-1370-4fb6-a477-5474e8239829","html_url":"https://github.com/codbex/codbex-atlas","commit_stats":null,"previous_names":[],"tags_count":121,"template":false,"template_full_name":null,"purl":"pkg:github/codbex/codbex-atlas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-atlas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-atlas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-atlas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-atlas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codbex","download_url":"https://codeload.github.com/codbex/codbex-atlas/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-atlas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28813001,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T11:52:46.759Z","status":"ssl_error","status_checked_at":"2026-01-27T11:52:35.059Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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-14T01:59:19.290Z","updated_at":"2026-02-19T15:04:58.840Z","avatar_url":"https://github.com/codbex.png","language":"Java","readme":"# Atlas by codbex\n\n[![Build Status](https://github.com/codbex/codbex-atlas/actions/workflows/build.yaml/badge.svg)](https://github.com/codbex/codbex-atlas/actions/workflows/build.yaml)\n[![Eclipse License](https://img.shields.io/badge/License-EPL%202.0-brightgreen.svg)](https://github.com/codbex/codbex-atlas/blob/main/LICENSE)\n[![Maven Central](https://img.shields.io/maven-central/v/com.codbex.atlas/codbex-atlas-application.svg)](https://central.sonatype.com/namespace/com.codbex.atlas)\n\nAtlas Edition contains all the available standard components.\n\nIt is good for exploration about the different features and their applicability in particular scenarios.\n\n\u003c!-- TOC --\u003e\n\n* [Atlas by codbex](#atlas-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-atlas:latest'\n  export CONTAINER_NAME='atlas'\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-atlas-*.jar\n```\n\n#### Start the application **in debug** with debug port `8000`\n\n```shell\ncd \"$GIT_REPO_FOLDER\"\n\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-atlas-*.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-atlas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodbex%2Fcodbex-atlas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodbex%2Fcodbex-atlas/lists"}