mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
set enable conversions to false by default but enable in compse
This commit is contained in:
parent
19007befb2
commit
ca9231b04e
2 changed files with 2 additions and 1 deletions
|
@ -50,7 +50,7 @@ settings =
|
|||
# Any commands to wrap the convert utility in, for example ["nice"], or ["firejail", "--profile=/etc/firejail/convert.profile"]
|
||||
convertCommandPrefix: []
|
||||
|
||||
enableConversions: false
|
||||
enableConversions: if process.env['ENABLE_CONVERSIONS'] == 'true' then true else false
|
||||
|
||||
# Filestore health check
|
||||
# ----------------------
|
||||
|
|
|
@ -21,6 +21,7 @@ services:
|
|||
MONGO_HOST: mongo
|
||||
POSTGRES_HOST: postgres
|
||||
MOCHA_GREP: ${MOCHA_GREP}
|
||||
ENABLE_CONVERSIONS: true
|
||||
depends_on:
|
||||
- mongo
|
||||
- redis
|
||||
|
|
Loading…
Reference in a new issue