overleaf/services/clsi
2018-08-22 22:17:02 +01:00
..
app/coffee change sync to async for lockfile debugging 2018-08-22 22:17:02 +01:00
bin Accidently left warning message commented out :( 2018-06-12 11:17:26 +01:00
config Merge branch 'ho-dockerise' into csh-sentry 2018-08-15 09:44:02 +01:00
seccomp add time secomp 2018-08-21 18:56:53 +01:00
src Add in a synctex end point 2014-04-08 15:18:56 +01:00
test change sync to async for lockfile debugging 2018-08-22 22:17:02 +01:00
.dockerignore update to 1.1.3 build scripts 2018-05-24 19:03:57 +01:00
.gitignore remove password from clsi for sql 2018-07-30 14:04:33 +01:00
.nvmrc update to 1.1.3 build scripts 2018-05-24 19:03:57 +01:00
.travis.yml Make travis read the node version from the .nvmrc file 2018-05-01 09:25:37 +01:00
.viminfo update build script and add load balancer agent 2018-03-29 12:12:29 +01:00
app.coffee remove some console.logs 2018-07-30 15:11:41 +01:00
debug update build script and add load balancer agent 2018-03-29 12:12:29 +01:00
docker-compose-config.yml change synctex binary and added it to mounted volumes in docker config 2018-05-25 13:45:07 +00:00
docker-compose.ci.yml fix expired projects command 2018-07-30 17:37:30 +01:00
docker-compose.yml fix expired projects command 2018-07-30 17:37:30 +01:00
Dockerfile update to 1.1.3 build scripts 2018-05-24 19:03:57 +01:00
entrypoint.sh grep works with command 2018-03-29 17:07:22 +01:00
Gruntfile.coffee use grunt to make compiles and cache dirs 2017-08-07 16:21:37 +01:00
install_deps.sh grep works with command 2018-03-29 17:07:22 +01:00
Jenkinsfile Push images to overleaf-ops 2018-07-18 11:32:41 +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 fix expired projects command 2018-07-30 17:37:30 +01:00
nodemon.json update to 1.1.3 build scripts 2018-05-24 19:03:57 +01:00
package-lock.json remove password from clsi for sql 2018-07-30 14:04:33 +01:00
package.json remove password from clsi for sql 2018-07-30 14:04:33 +01:00
patch-texlive-dockerfile update build script and add load balancer agent 2018-03-29 12:12:29 +01:00
README.md Fix example request URL and JSON 2014-02-26 10:13:09 -05:00
synctex.profile update build script and add load balancer agent 2018-03-29 12:12:29 +01:00

clsi-sharelatex

A web api for compiling LaTeX documents in the cloud

Build Status

Installation

The CLSI can be installed and set up as part of the entire ShareLaTeX 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:sharelatex/clsi-sharelatex.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) ShareLaTeX, 2014.