set enable conversions to false by default but enable in compse

This commit is contained in:
Henry Oswald 2019-02-05 11:19:02 +00:00
parent 19007befb2
commit ca9231b04e
2 changed files with 2 additions and 1 deletions

View file

@ -50,7 +50,7 @@ settings =
# Any commands to wrap the convert utility in, for example ["nice"], or ["firejail", "--profile=/etc/firejail/convert.profile"] # Any commands to wrap the convert utility in, for example ["nice"], or ["firejail", "--profile=/etc/firejail/convert.profile"]
convertCommandPrefix: [] convertCommandPrefix: []
enableConversions: false enableConversions: if process.env['ENABLE_CONVERSIONS'] == 'true' then true else false
# Filestore health check # Filestore health check
# ---------------------- # ----------------------

View file

@ -21,6 +21,7 @@ services:
MONGO_HOST: mongo MONGO_HOST: mongo
POSTGRES_HOST: postgres POSTGRES_HOST: postgres
MOCHA_GREP: ${MOCHA_GREP} MOCHA_GREP: ${MOCHA_GREP}
ENABLE_CONVERSIONS: true
depends_on: depends_on:
- mongo - mongo
- redis - redis