mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 13:53:40 -05:00
ae0c347f27
[misc] npm workspaces GitOrigin-RevId: 87aa72db6637fb238d7cd35b0a48ac3ed58ab3eb
41 lines
1 KiB
JavaScript
41 lines
1 KiB
JavaScript
/* eslint-disable no-console */
|
|
const fs = require('fs')
|
|
const Path = require('path')
|
|
const { merge } = require('./merge')
|
|
|
|
const CWD = process.cwd()
|
|
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.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}.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
|
|
}
|