Skip to content

Quickstart

1. Create a config file

Create dex.yaml:

project:
  name: my-first-pipeline
  version: "0.1.0"

api:
  enabled: true
  host: "0.0.0.0"
  port: 17000

2. Validate the config

dex validate dex.yaml

3. Start the server

dex run dex.yaml

4. Test it

curl http://localhost:17000/health

Next Steps