overleaf/services/clsi
2020-06-09 11:22:28 +01:00
..
.github add public link to contributing docs 2019-10-25 11:01:37 -04:00
app/js fix eslint errors 2020-06-02 09:51:34 +01:00
bin remove ./bin/install_texlive_gce.sh which shouldn't be needed 2020-03-11 10:06:55 +00:00
config add missing setting for optimiseInDocker 2020-06-09 11:22:28 +01:00
db [misc] move the sqlite database into a db/ directory 2020-04-03 12:36:31 +02:00
seccomp add epoll_pwait to secomp profile 2019-01-24 12:30:37 +00:00
src Add in a synctex end point 2014-04-08 15:18:56 +01:00
test fix broken unit test 2020-06-02 11:12:57 +01:00
.dockerignore [misc] narrow down write access/ownership for the run-time user 2020-04-03 12:36:32 +02:00
.eslintrc updated build-scripts 2020-03-11 11:55:44 +01:00
.gitignore decaffeinate: update .gitignore 2020-02-19 12:11:31 +01:00
.nvmrc update to node 10.21.0 2020-06-03 10:22:31 +01:00
.prettierrc updated build-scripts 2020-03-11 11:55:44 +01:00
.viminfo update build script and add load balancer agent 2018-03-29 12:12:29 +01:00
app.js fix eslint errors 2020-06-02 09:51:34 +01:00
buildscript.txt update buildscript.txt to node 10.21.0 2020-06-03 11:11:51 +01:00
debug update build script and add load balancer agent 2018-03-29 12:12:29 +01:00
docker-compose-config.yml [misc] update the build scripts to 1.3.5 2020-02-11 12:27:59 +01:00
docker-compose.ci.yml updated build-scripts 2020-03-11 11:55:44 +01:00
docker-compose.yml updated build-scripts 2020-03-11 11:55:44 +01:00
Dockerfile update to node 10.21.0 2020-06-03 10:22:31 +01:00
entrypoint.sh [misc] use a directory in /tmp for temporary data 2020-04-03 12:36:32 +02:00
install_deps.sh grep works with command 2018-03-29 17:07:22 +01:00
Jenkinsfile decaffeinate: update build scripts to es 2020-02-19 12:10:00 +01:00
kube.yaml updateded build scripts 2018-03-02 17:14:23 +00:00
LICENSE Create LICENSE 2014-02-18 17:09:54 +00:00
Makefile [misc] bump the build-scripts to version 2.1.0 2020-04-03 12:18:09 +02:00
nodemon.json decaffeinate: update build scripts to es 2020-02-19 12:10:00 +01:00
package-lock.json [misc] simplify the smoke test and process shutdown 2020-05-19 10:30:59 +01:00
package.json [misc] simplify the smoke test and process shutdown 2020-05-19 10:30:59 +01:00
patch-texlive-dockerfile update build script and add load balancer agent 2018-03-29 12:12:29 +01:00
README.md Update README.md 2019-05-07 16:41:17 +01:00
synctex.profile update build script and add load balancer agent 2018-03-29 12:12:29 +01:00

overleaf/clsi

A web api for compiling LaTeX documents in the cloud

The Common LaTeX Service Interface (CLSI) provides a RESTful interface to traditional LaTeX tools (or, more generally, any command line tool for composing marked-up documents into a display format such as PDF or HTML). The CLSI listens on the following ports by default:

  • TCP/3009 - the RESTful interface
  • TCP/3048 - reports load information
  • TCP/3049 - HTTP interface to control the CLSI service

These defaults can be modified in config/settings.defaults.coffee.

The provided Dockerfile builds a docker image which has the docker command line tools installed. The configuration in docker-compose-config.yml mounts the docker socket, in order that the CLSI container can talk to the docker host it is running in. This allows it to spin up sibling containers running an image with a TeX distribution installed to perform the actual compiles.

The CLSI can be configured through the following environment variables:

  • DOCKER_RUNNER - Set to true to use sibling containers
  • SYNCTEX_BIN_HOST_PATH - Path to SyncTeX binary
  • COMPILES_HOST_DIR - Working directory for LaTeX compiles
  • SQLITE_PATH - Path to SQLite database
  • TEXLIVE_IMAGE - The TEXLIVE docker image to use for sibling containers, e.g. gcr.io/overleaf-ops/texlive-full:2017.1
  • TEXLIVE_IMAGE_USER - When using sibling containers, the user to run as in the TEXLIVE image. Defaults to tex
  • TEX_LIVE_IMAGE_NAME_OVERRIDE - The name of the registry for the docker image e.g. gcr.io/overleaf-ops
  • FILESTORE_DOMAIN_OVERRIDE - The url for the filestore service e.g.http://$FILESTORE_HOST:3009
  • STATSD_HOST - The address of the Statsd service (used by the metrics module)
  • LISTEN_ADDRESS - The address for the RESTful service to listen on. Set to 0.0.0.0 to listen on all network interfaces
  • SMOKE_TEST - Whether to run smoke tests

Installation

The CLSI can be installed and set up as part of the entire Overleaf stack (complete with front end editor and document storage), or it can be run as a standalone service. To run is as a standalone service, first checkout this repository:

$ git clone git@github.com:overleaf/clsi.git

Then install the require npm modules:

$ npm install

Then compile the coffee script source files:

$ grunt install

Finally, (after configuring your local database - see the Config section), run the CLSI service:

$ grunt run

The CLSI should then be running at http://localhost:3013.

Config

You will need to set up a database in mysql to use with the CLSI, and then fill in the database name, username and password in the config file at config/settings.development.coffee.

API

The CLSI is based on a JSON API.

Example Request

(Note that valid JSON should not contain any comments like the example below).

POST /project/<project-id>/compile
{
    "compile": {
        "options": {
            // Which compiler to use. Can be latex, pdflatex, xelatex or lualatex
            "compiler": "lualatex",
            // How many seconds to wait before killing the process. Default is 60.
            "timeout": 40 
        },
        // The main file to run LaTeX on
        "rootResourcePath": "main.tex", 
        // An array of files to include in the compilation. May have either the content
        // passed directly, or a URL where it can be downloaded.
        "resources": [{
            "path": "main.tex",
            "content": "\\documentclass{article}\n\\begin{document}\nHello World\n\\end{document}"
        }, {
            "path": "image.png",
            "url": "www.example.com/image.png",
            "modified": 123456789 // Unix time since epoch
        }]
    }
}

You can specify any project-id in the URL, and the files and LaTeX environment will be persisted between requests. URLs will be downloaded and cached until provided with a more recent modified date.

Example Response

{
    "compile": {
        "status": "success",
        "outputFiles": [{
            "type": "pdf",
            "url": "http://localhost:3013/project/<project-id>/output/output.pdf"
        }, {
            "type": "log",
            "url": "http://localhost:3013/project/<project-id>/output/output.log"
        }]
    }
}

License

The code in this repository is released under the GNU AFFERO GENERAL PUBLIC LICENSE, version 3. A copy can be found in the LICENSE file.

Copyright (c) Overleaf, 2014-2019.