Skip to content

ExportAllVariables

Erwan KOFFI edited this page Nov 21, 2017 · 1 revision

Export all variables

This task allows you to export all variables from your Data Fabric platform into a json file.

The task can be launched with the command gradle exportAllVariables.

Configuration

Configuration object

Once your saagie object is available on your project with the server correctly set up, you need to set the export file.

saagie {
    server {...}

    packaging {
        exportFile = ''
    }
}

The job export works with any job type.

Properties explanation

  • exportFile
    • The name of the export file.
    • type: string
    • default:

Examples

saagie {
    server {...}

    packaging {
        exportFile = 'my-cool-file'
    }
}