mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-02 20:02:17 +00:00
18 lines
No EOL
391 B
CoffeeScript
18 lines
No EOL
391 B
CoffeeScript
Path = require('path')
|
|
|
|
module.exports = Settings =
|
|
internal:
|
|
spelling:
|
|
port: 3005
|
|
host: process.env["LISTEN_ADDRESS"] or "localhost"
|
|
|
|
mongo:
|
|
url: process.env['MONGO_CONNECTION_STRING'] or "mongodb://#{process.env["MONGO_HOST"] or "localhost"}/sharelatex"
|
|
|
|
cacheDir: Path.resolve "cache"
|
|
|
|
|
|
healthCheckUserId: "53c64d2fd68c8d000010bb5f"
|
|
|
|
sentry:
|
|
dsn: process.env.SENTRY_DSN |