Skip to content

Simple Script Run

Description

This simple example runs a script called my_script.py.

Example call

my_script.py
print("hello world!")
csm-orc run run.json

Template

run.json
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
{
  "steps": [
    {
      "id": "Run",
      "description": "Simple Run of a python script",
      "command": "python",
      "arguments": [
        "my_script.py"
      ]
    }
  ]
}