overleaf/services/spelling/config/settings.defaults.cjs

32 lines
576 B
JavaScript
Raw Normal View History

2019-07-03 08:41:01 -04:00
const Path = require('path')
module.exports = {
internal: {
spelling: {
port: 3005,
2021-07-13 07:04:47 -04:00
host: process.env.LISTEN_ADDRESS || 'localhost',
},
2019-07-03 08:41:01 -04:00
},
cacheDir: Path.resolve('cache'),
healthCheckUserId: '53c64d2fd68c8d000010bb5f',
ignoredMisspellings: process.env.IGNORED_MISSPELLINGS
? process.env.IGNORED_MISSPELLINGS.split(',')
: [
'Overleaf',
'overleaf',
'ShareLaTeX',
'sharelatex',
'LaTeX',
'http',
'https',
2021-07-13 07:04:47 -04:00
'www',
],
2019-07-03 08:41:01 -04:00
sentry: {
2021-07-13 07:04:47 -04:00
dsn: process.env.SENTRY_DSN,
},
2019-07-03 08:41:01 -04:00
}