1

Updated README

This commit is contained in:
2018-06-09 17:46:46 +03:00
parent 7dbb358508
commit 0e21b7eee2

View File

@@ -16,7 +16,19 @@
package com.devsoap.dbt.config package com.devsoap.dbt.config
class LedgerConfig { class LedgerConfig {
/**
* Are the ledger endpoints active
*/
boolean enabled = true boolean enabled = true
/**
* The context path of the ledger, by default /ledger
*/
String path = 'ledger' String path = 'ledger'
/**
* If the ledger is disabled, then this specifies the remote url of the ledger the executors use
*/
String remoteUrl String remoteUrl
} }