mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
94c208311c
[clsi] goodbye sqlite db GitOrigin-RevId: e7f16920c44e74a425b92884b48a60272dfb015b
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
const Path = require('path')
|
|
|
|
module.exports = {
|
|
path: {
|
|
// eslint-disable-next-line no-path-concat
|
|
compilesDir: Path.resolve(__dirname + '/../../../compiles'),
|
|
// eslint-disable-next-line no-path-concat
|
|
clsiCacheDir: Path.resolve(__dirname + '/../../../cache'),
|
|
// synctexBaseDir: (project_id) -> Path.join(@compilesDir, project_id)
|
|
synctexBaseDir() {
|
|
return '/compile'
|
|
},
|
|
sandboxedCompilesHostDir: process.env.SANDBOXED_COMPILES_HOST_DIR,
|
|
},
|
|
|
|
clsi: {
|
|
// strace: true
|
|
// archive_logs: true
|
|
commandRunner: 'docker-runner-sharelatex',
|
|
latexmkCommandPrefix: ['/usr/bin/time', '-v'], // on Linux
|
|
docker: {
|
|
image: process.env.TEXLIVE_IMAGE || 'texlive-full:2017.1-opt',
|
|
env: {
|
|
PATH: '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/texlive/2017/bin/x86_64-linux/',
|
|
HOME: '/tmp',
|
|
},
|
|
modem: {
|
|
socketPath: false,
|
|
},
|
|
user: process.env.SIBLING_CONTAINER_USER || '111',
|
|
},
|
|
},
|
|
|
|
internal: {
|
|
clsi: {
|
|
port: 3013,
|
|
load_port: 3044,
|
|
host: 'localhost',
|
|
},
|
|
},
|
|
|
|
apis: {
|
|
clsi: {
|
|
url: 'http://localhost:3013',
|
|
},
|
|
},
|
|
|
|
smokeTest: false,
|
|
project_cache_length_ms: 1000 * 60 * 60 * 24,
|
|
parallelFileDownloads: 1,
|
|
}
|