mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0a12c47b35
Move chat service to ES modules GitOrigin-RevId: c08ae8328b8f3b539e6cfe052834b84bb3756330
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
/* eslint-disable no-console */
|
|
const fs = require('fs')
|
|
const Path = require('path')
|
|
const { merge } = require('./merge')
|
|
|
|
const CWD = process.cwd()
|
|
const ENTRY_POINT_DIR = process.argv[1]
|
|
? Path.dirname(process.argv[1])
|
|
: undefined
|
|
const NODE_ENV = (process.env.NODE_ENV || 'development').toLowerCase()
|
|
const SHARELATEX_CONFIG = process.env.SHARELATEX_CONFIG
|
|
|
|
let settings
|
|
let settingsExist = false
|
|
const defaultsPath =
|
|
pathIfExists(Path.join(CWD, 'config/settings.defaults.cjs')) ||
|
|
pathIfExists(Path.join(CWD, 'config/settings.defaults.js')) ||
|
|
pathIfExists(Path.join(ENTRY_POINT_DIR, 'config/settings.defaults.cjs')) ||
|
|
pathIfExists(Path.join(ENTRY_POINT_DIR, 'config/settings.defaults.js'))
|
|
if (defaultsPath) {
|
|
console.log(`Using default settings from ${defaultsPath}`)
|
|
settings = require(defaultsPath)
|
|
settingsExist = true
|
|
} else {
|
|
settings = {}
|
|
}
|
|
|
|
const overridesPath =
|
|
pathIfExists(SHARELATEX_CONFIG) ||
|
|
pathIfExists(Path.join(CWD, `config/settings.${NODE_ENV}.cjs`)) ||
|
|
pathIfExists(Path.join(CWD, `config/settings.${NODE_ENV}.js`))
|
|
if (overridesPath) {
|
|
console.log(`Using settings from ${overridesPath}`)
|
|
settings = merge(require(overridesPath), settings)
|
|
settingsExist = true
|
|
}
|
|
|
|
if (!settingsExist) {
|
|
console.warn("No settings or defaults found. I'm flying blind.")
|
|
}
|
|
|
|
module.exports = settings
|
|
|
|
function pathIfExists(path) {
|
|
if (path && fs.existsSync(path)) {
|
|
return path
|
|
}
|
|
return null
|
|
}
|