github.com/mattevans/edward@v1.9.2/examples/env/edward.json (about)

     1  {
     2      "groups": [
     3        {
     4          "name": "groupwithenv",
     5          "children": ["noenv"],
     6          "env": [
     7            "MUST_SET=set"
     8          ]
     9        }
    10      ],
    11      "services": [
    12          {
    13              "name": "noenv",
    14              "path": "envcheck",
    15              "commands": {
    16                  "build": "go install",
    17                  "launch": "envcheck"
    18              }
    19          },
    20          {
    21              "name": "withenv",
    22              "path": "envcheck",
    23              "commands": {
    24                  "build": "go install",
    25                  "launch": "envcheck"
    26              },
    27              "env": [
    28                "MUST_SET=set"
    29              ]
    30          }
    31      ]
    32  }