overleaf/services/clsi/test/acceptance/scripts/settings.test.js

50 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-05-19 13:36:27 -04:00
const Path = require('path')
module.exports = {
2021-05-19 13:36:27 -04:00
path: {
compilesDir: Path.join(__dirname, '../../../compiles'),
clsiCacheDir: Path.join(__dirname, '../../../cache'),
2021-05-19 13:36:27 -04:00
// synctexBaseDir: (project_id) -> Path.join(@compilesDir, project_id)
synctexBaseDir() {
return '/compile'
},
2021-07-13 07:04:48 -04:00
sandboxedCompilesHostDir: process.env.SANDBOXED_COMPILES_HOST_DIR,
2021-05-19 13:36:27 -04:00
},
2021-05-19 13:36:27 -04:00
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: {
2021-07-13 07:04:48 -04:00
PATH: '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/texlive/2017/bin/x86_64-linux/',
HOME: '/tmp',
2021-05-19 13:36:27 -04:00
},
modem: {
2021-07-13 07:04:48 -04:00
socketPath: false,
2021-05-19 13:36:27 -04:00
},
2021-07-13 07:04:48 -04:00
user: process.env.SIBLING_CONTAINER_USER || '111',
},
2021-05-19 13:36:27 -04:00
},
2021-05-19 13:36:27 -04:00
internal: {
clsi: {
port: 3013,
load_port: 3044,
2021-07-13 07:04:48 -04:00
host: 'localhost',
},
2021-05-19 13:36:27 -04:00
},
2021-05-19 13:36:27 -04:00
apis: {
clsi: {
2021-07-13 07:04:48 -04:00
url: 'http://localhost:3013',
},
2021-05-19 13:36:27 -04:00
},
2021-05-19 13:36:27 -04:00
smokeTest: false,
project_cache_length_ms: 1000 * 60 * 60 * 24,
2021-07-13 07:04:48 -04:00
parallelFileDownloads: 1,
2021-05-19 13:36:27 -04:00
}