mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
638ac52e40
By default, no timing information will be taken. On Linux with GNU user land, this value should be configured to `["/usr/bin/time", "-v"]`. On Mac, gnu-time should be installed and configured to `["/usr/local/bin/gtime", "-v"]`.
48 lines
No EOL
1.2 KiB
CoffeeScript
48 lines
No EOL
1.2 KiB
CoffeeScript
Path = require "path"
|
|
|
|
module.exports =
|
|
# Options are passed to Sequelize.
|
|
# See http://sequelizejs.com/documentation#usage-options for details
|
|
mysql:
|
|
clsi:
|
|
database: "clsi"
|
|
username: "clsi"
|
|
password: null
|
|
dialect: "sqlite"
|
|
storage: Path.resolve(__dirname + "/../db.sqlite")
|
|
|
|
path:
|
|
compilesDir: Path.resolve(__dirname + "/../compiles")
|
|
clsiCacheDir: Path.resolve(__dirname + "/../cache")
|
|
synctexBaseDir: (project_id) -> Path.join(@compilesDir, project_id)
|
|
|
|
# clsi:
|
|
# strace: true
|
|
# archive_logs: true
|
|
# commandRunner: "docker-runner-sharelatex"
|
|
# docker:
|
|
# image: "quay.io/sharelatex/texlive-full"
|
|
# env:
|
|
# PATH: "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/texlive/2013/bin/x86_64-linux/"
|
|
# HOME: "/tmp"
|
|
# modem:
|
|
# socketPath: false
|
|
# user: "tex"
|
|
# latexmkCommandPrefix: []
|
|
# # latexmkCommandPrefix: ["/usr/bin/time", "-v"] # on Linux
|
|
# # latexmkCommandPrefix: ["/usr/local/bin/gtime", "-v"] # on Mac OSX, installed with `brew install gnu-time`
|
|
|
|
internal:
|
|
clsi:
|
|
port: 3013
|
|
load_port: 3044
|
|
host: "localhost"
|
|
|
|
|
|
apis:
|
|
clsi:
|
|
url: "http://localhost:3013"
|
|
|
|
smokeTest: false
|
|
project_cache_length_ms: 60 * 60 * 24
|
|
parallelFileDownloads:1 |