overleaf/services/clsi/config/settings.defaults.coffee

48 lines
1.2 KiB
CoffeeScript
Raw Normal View History

2014-04-02 16:59:44 -04:00
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")
2014-04-08 10:18:56 -04:00
synctexBaseDir: (project_id) -> Path.join(@compilesDir, project_id)
2014-04-02 16:59:44 -04:00
2014-04-30 06:31:37 -04:00
# clsi:
2016-03-30 09:10:07 -04:00
# strace: true
# archive_logs: true
2014-04-30 06:31:37 -04:00
# 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`
2014-04-30 06:31:37 -04:00
2014-04-02 16:59:44 -04:00
internal:
clsi:
port: 3013
host: "localhost"
2016-05-19 11:51:50 -04:00
2014-04-02 16:59:44 -04:00
apis:
clsi:
url: "http://localhost:3013"
2014-08-19 07:11:56 -04:00
smokeTest: false
project_cache_length_ms: 1000 * 60 * 60 * 24
parallelFileDownloads:1