Local Script Environment
Use the script adapter when you need custom setup, checks, glue code, or simple automation.
version: orch/1.0
metadata: id: script-example description: Local script environment owner: name: Orch email: orch@example.com
runners: local: type: local config: {}
components: setup: type: script runner: local source: embedded: | echo "message=hello from orch" >> "$ORCH_OUTPUT_ENV" outputs: - name: messageApply it:
orch up --env-id script-demoInspect state:
orch state inspect --env-id script-demoDestroy it:
orch down --env-id script-demo