mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-23 14:00:08 +02:00

This reverts commit 19d731abf683066654027de3a4f9ac0b8916f22c. GitOrigin-RevId: eb7c45ab45e02054601b607a4bfeb432424a1837
17 lines
334 B
JavaScript
17 lines
334 B
JavaScript
module.exports = {
|
|
internal: {
|
|
notifications: {
|
|
port: 3042,
|
|
host: process.env.LISTEN_ADDRESS || '127.0.0.1',
|
|
},
|
|
},
|
|
|
|
mongo: {
|
|
url:
|
|
process.env.MONGO_CONNECTION_STRING ||
|
|
`mongodb://${process.env.MONGO_HOST || '127.0.0.1'}/sharelatex`,
|
|
options: {
|
|
monitorCommands: true,
|
|
},
|
|
},
|
|
}
|