{"id":29924054,"url":"https://github.com/openedi/oedi-si-single-container","last_synced_at":"2026-03-09T08:32:35.286Z","repository":{"id":173454742,"uuid":"614536205","full_name":"openEDI/oedi-si-single-container","owner":"openEDI","description":"OEDI-SI single docker container","archived":false,"fork":false,"pushed_at":"2025-05-14T17:04:08.000Z","size":72255,"stargazers_count":1,"open_issues_count":4,"forks_count":1,"subscribers_count":11,"default_branch":"main","last_synced_at":"2025-08-02T10:58:20.201Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openEDI.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-03-15T19:37:42.000Z","updated_at":"2025-05-14T17:04:12.000Z","dependencies_parsed_at":"2023-07-04T11:16:40.465Z","dependency_job_id":"2f3a6b35-8249-444a-b2dc-c38c5eabe4f1","html_url":"https://github.com/openEDI/oedi-si-single-container","commit_stats":null,"previous_names":["openedi/oedi-si-single-container"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/openEDI/oedi-si-single-container","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openEDI%2Foedi-si-single-container","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openEDI%2Foedi-si-single-container/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openEDI%2Foedi-si-single-container/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openEDI%2Foedi-si-single-container/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openEDI","download_url":"https://codeload.github.com/openEDI/oedi-si-single-container/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openEDI%2Foedi-si-single-container/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30287843,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"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":[],"created_at":"2025-08-02T10:38:34.648Z","updated_at":"2026-03-09T08:32:35.266Z","avatar_url":"https://github.com/openEDI.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CLI\n\n## Installation\n\n```\npip install -e .\n```\n\n## Using the CLI\n\nBefore running the CLI make sure that the required Docker image is available. If not, the image can be built using,\n\n```\noedisisc build --tag singlecontainerapp:0.3.0 -p python\n```\n\nif completely new build is required i.e. no previously cached container layers, use,\n\n```\noedisisc build -t singlecontainerapp:0.3.0 --nocache true -p python\n```\n\n```\noedisisc init -p sampleProject\n```\n\n```\noedisisc run -p sampleProject -c sampleProject/config/user_config.json --tag singlecontainerapp:0.3.0\n```\n\n### Set/Get CLI default options\n\nThe default CLI settings can be set once using set_default option as shown below.\n\n```\noedisisc set_default --tag singlecontainerapp:0.3.0 --python_cmd python --podman false\n```\n\nSince the default tag was set, the run command reduces to,\n\n```\noedisisc run -p sampleProject -c sampleProject/config/user_config.json\n```\n\ninstead of,\n\n```\noedisisc run -p sampleProject -c sampleProject/config/user_config.json --tag singlecontainerapp:0.3.0\n```\n\nThe view the default CLI settings use get_default option as shown below.\n\n```\noedisisc get_default\n```\n\n### Using Podman instead of Docker\n\n```\noedisisc build --tag singlecontainerapp:0.3.0 -p python --podman true\n```\n\nif completely new build is required i.e. no previously cached container layers, use,\n\n```\noedisisc build -t singlecontainerapp:0.3.0 --nocache true -p python --podman true\n```\n\n```\noedisisc init -p sampleProject\n```\n\n```\noedisisc run -p sampleProject -c sampleProject/config/user_config.json --tag singlecontainerapp:0.3.0 --podman true\n```\n\n\n## Output\n\nCheck /path/to/project/output\n\n## Integrating external/user federates without writing federate code\n\nOne can integrate DSSE (supported in this version) and DOPF (to be supported in the next version) in a manner that is completely decoupled from co-simulation and oedisi framework. Check /path/to/project/user_federates/user_dsse/main.py for more details.\n\n# Deep Dive\n* [Build and Runtime System](docs/build_and_runtime_system.md)\n* [Data Preprocessor](docs/data_preprocessor.md)\n\n# Edit Scenario\n* [Prerequisite](docs/prerequisite.md)\n* [Using CLI for Edit Scenario](docs/edit_scenario_uiruntime_uiserver.md)\n* [Running Edit Scenario Directly Using Docker/Podman](docs/edit_scenario_uiruntime_uiserver_without_cli.md)\n* [User Configuration Details](docs/user_config.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenedi%2Foedi-si-single-container","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenedi%2Foedi-si-single-container","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenedi%2Foedi-si-single-container/lists"}