Christopher Hoskin 28373d34f5 Bump build script to 1.1.8, drop csh-gcdm-test and csh-staging repos 8 лет назад
..
app e46b6563c0 change override to leave image name so it works for wl_texlive 8 лет назад
bin 2155657651 Accidently left warning message commented out :( 8 лет назад
config 4ec8a423cb added texliveImageNameOveride 8 лет назад
seccomp c4e8d76427 added seccomp 8 лет назад
src 892e6bf6d1 Add in a synctex end point 12 лет назад
test e46b6563c0 change override to leave image name so it works for wl_texlive 8 лет назад
.dockerignore 91bd54cff9 update to 1.1.3 build scripts 8 лет назад
.gitignore 4179d19200 move synctex into a directory for simple mounting 8 лет назад
.nvmrc 91bd54cff9 update to 1.1.3 build scripts 8 лет назад
.travis.yml 3ad8e9f2f1 Make travis read the node version from the .nvmrc file 8 лет назад
.viminfo 551e8d36b4 update build script and add load balancer agent 8 лет назад
Dockerfile 91bd54cff9 update to 1.1.3 build scripts 8 лет назад
Gruntfile.coffee 1e34f6371e use grunt to make compiles and cache dirs 9 лет назад
Jenkinsfile 28373d34f5 Bump build script to 1.1.8, drop csh-gcdm-test and csh-staging repos 8 лет назад
LICENSE 70c6b0b8da Create LICENSE 12 лет назад
Makefile 28373d34f5 Bump build script to 1.1.8, drop csh-gcdm-test and csh-staging repos 8 лет назад
README.md 2b5e369b98 Fix example request URL and JSON 12 лет назад
app.coffee a767bfe964 remove express header 8 лет назад
debug 551e8d36b4 update build script and add load balancer agent 8 лет назад
docker-compose-config.yml 0e2603e4be change synctex binary and added it to mounted volumes in docker config 8 лет назад
docker-compose.ci.yml 28373d34f5 Bump build script to 1.1.8, drop csh-gcdm-test and csh-staging repos 8 лет назад
docker-compose.yml 28373d34f5 Bump build script to 1.1.8, drop csh-gcdm-test and csh-staging repos 8 лет назад
entrypoint.sh 4c96abd6c5 grep works with command 8 лет назад
install_deps.sh 4c96abd6c5 grep works with command 8 лет назад
kube.yaml b1c0abbd4d updateded build scripts 8 лет назад
nodemon.json 91bd54cff9 update to 1.1.3 build scripts 8 лет назад
package-lock.json 551e8d36b4 update build script and add load balancer agent 8 лет назад
package.json 28373d34f5 Bump build script to 1.1.8, drop csh-gcdm-test and csh-staging repos 8 лет назад
patch-texlive-dockerfile 551e8d36b4 update build script and add load balancer agent 8 лет назад
synctex.profile 551e8d36b4 update build script and add load balancer agent 8 лет назад

README.md

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.