├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── dependabot.yml └── workflows │ ├── build-and-release.yml │ ├── build-wheel.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples └── assembly.ipynb ├── orion_cli ├── __init__.py ├── __main__.py ├── cli.py ├── helpers │ ├── asset_helper.py │ ├── cad_helper.py │ ├── config_helper.py │ ├── numpy_helper.py │ └── remote_helper.py ├── services │ ├── __init__.py │ ├── base_service.py │ ├── cad_service.py │ ├── create_service.py │ ├── deploy_service.py │ ├── display_service.py │ ├── log_service.py │ └── revision_service.py └── templates │ ├── README_template.py │ └── gitignore_template.py ├── poetry.lock ├── pyproject.toml └── tests └── test_orion_cli.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/.github/workflows/build-and-release.yml -------------------------------------------------------------------------------- /.github/workflows/build-wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/.github/workflows/build-wheel.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/README.md -------------------------------------------------------------------------------- /examples/assembly.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/examples/assembly.ipynb -------------------------------------------------------------------------------- /orion_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/__init__.py -------------------------------------------------------------------------------- /orion_cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/__main__.py -------------------------------------------------------------------------------- /orion_cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/cli.py -------------------------------------------------------------------------------- /orion_cli/helpers/asset_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/helpers/asset_helper.py -------------------------------------------------------------------------------- /orion_cli/helpers/cad_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/helpers/cad_helper.py -------------------------------------------------------------------------------- /orion_cli/helpers/config_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/helpers/config_helper.py -------------------------------------------------------------------------------- /orion_cli/helpers/numpy_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/helpers/numpy_helper.py -------------------------------------------------------------------------------- /orion_cli/helpers/remote_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/helpers/remote_helper.py -------------------------------------------------------------------------------- /orion_cli/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/services/__init__.py -------------------------------------------------------------------------------- /orion_cli/services/base_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/services/base_service.py -------------------------------------------------------------------------------- /orion_cli/services/cad_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/services/cad_service.py -------------------------------------------------------------------------------- /orion_cli/services/create_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/services/create_service.py -------------------------------------------------------------------------------- /orion_cli/services/deploy_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/services/deploy_service.py -------------------------------------------------------------------------------- /orion_cli/services/display_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/services/display_service.py -------------------------------------------------------------------------------- /orion_cli/services/log_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/services/log_service.py -------------------------------------------------------------------------------- /orion_cli/services/revision_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/services/revision_service.py -------------------------------------------------------------------------------- /orion_cli/templates/README_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/templates/README_template.py -------------------------------------------------------------------------------- /orion_cli/templates/gitignore_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/orion_cli/templates/gitignore_template.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_orion_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenOrion/cli/HEAD/tests/test_orion_cli.py --------------------------------------------------------------------------------