{"id":48385138,"url":"https://github.com/codbex/codbex-theia","last_synced_at":"2026-04-05T21:31:02.356Z","repository":{"id":130750523,"uuid":"602954091","full_name":"codbex/codbex-theia","owner":"codbex","description":"Terminal over HTTP","archived":false,"fork":false,"pushed_at":"2025-08-14T06:55:25.000Z","size":301,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-08-14T08:50:05.508Z","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}},"created_at":"2023-02-17T09:55:17.000Z","updated_at":"2025-08-14T06:36:32.000Z","dependencies_parsed_at":"2023-09-24T10:02:46.642Z","dependency_job_id":"af6f46a0-cc67-47bd-b963-47801baa21ec","html_url":"https://github.com/codbex/codbex-theia","commit_stats":null,"previous_names":[],"tags_count":64,"template":false,"template_full_name":null,"purl":"pkg:github/codbex/codbex-theia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-theia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-theia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-theia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-theia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codbex","download_url":"https://codeload.github.com/codbex/codbex-theia/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codbex%2Fcodbex-theia/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31451437,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"ssl_error","status_checked_at":"2026-04-05T21:22:51.943Z","response_time":75,"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-04-05T21:30:56.885Z","updated_at":"2026-04-05T21:31:02.298Z","avatar_url":"https://github.com/codbex.png","language":"Java","readme":"# codbex-theia\n\nTheia Edition contains only the Terminal over HTTP standard components.\n\nIt is good for getting shell access to the target environment such as Kubernetes.\n\n\u003c!-- TOC --\u003e\n* [codbex-theia](#codbex-theia)\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-theia:latest'\n  export CONTAINER_NAME='theia'\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-theia-*.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-theia-*.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\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodbex%2Fcodbex-theia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodbex%2Fcodbex-theia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodbex%2Fcodbex-theia/lists"}