Skip to content

Instantly share code, notes, and snippets.

@danbills
Created June 19, 2018 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danbills/afd746921bf4b98a6559dd5431d92060 to your computer and use it in GitHub Desktop.
Save danbills/afd746921bf4b98a6559dd5431d92060 to your computer and use it in GitHub Desktop.
cromwell conf: file storage HSQL, call caching on
include required(classpath("application"))
system {
workflow-restart = true
}
call-caching {
enabled = true
}
database {
profile = "slick.jdbc.HsqldbProfile$"
db {
driver = "org.hsqldb.jdbcDriver"
url = "jdbc:hsqldb:file:metadata;shutdown=false;hsqldb.tx=mvcc"
connectionTimeout = 20000
}
}
backend {
providers {
Local {
config {
filesystems {
local {
caching {
duplication-strategy: ["soft-link"]
hashing-strategy: "path"
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment