Liam O'Brien e53c6f2aea Notify users about expiring git PATs and expose PATs in admin panel (#33802) 2 月之前
..
conf a648015db8 Centralize prettier configuration to root level (#30501) 6 月之前
src e53c6f2aea Notify users about expiring git PATs and expose PATs in admin panel (#33802) 2 月之前
.dockerignore 750ef6ca19 Merge pull request #30510 from overleaf/mj-git-bridge-persistent-swap-local 7 月之前
.gitignore 07b2255426 [misc] cleanup .dockerignore and .gitignore files (#25312) 1 年之前
Dockerfile 49c1c65dd8 [e2e] e2e_test_setup: perform health check on all the services (#31311) 6 月之前
LICENSE 9f38a40cd2 Initial commit 11 年之前
Makefile a0ca344065 Merge pull request #34127 from overleaf/gs-j-cd-hooks 2 月之前
README.md a648015db8 Centralize prettier configuration to root level (#30501) 6 月之前
dev-env-start.sh 750ef6ca19 Merge pull request #30510 from overleaf/mj-git-bridge-persistent-swap-local 7 月之前
pom.xml bc8008737c Merge pull request #33847 from overleaf/lg-async-http-client-security-upgrade 2 月之前
server-pro-start.sh ea7d633117 Merge pull request #12371 from overleaf/em-git-bridge-data-directory 3 年之前
start.sh e8fe5abc82 Merge pull request #18312 from overleaf/gs-git-bridge-bash 2 年之前

README.md

writelatex-git-bridge

Docker

The Dockerfile contains all the requirements for building and running the writelatex-git-bridge.

# build the image
docker build -t writelatex-git-bridge .

# run it with the demo config
docker run -v `pwd`/conf/local.json:/conf/runtime.json writelatex-git-bridge

Native install

Required packages

  • maven (for building, running tests and packaging)
  • jdk-8 (for compiling and running)

Commands

To be run from the base directory:

Build jar: mvn package

Run tests: mvn test

Clean: mvn clean

To be run from the dev-environment:

Build jar: bin/run git-bridge make package

Run tests: bin/run git-bridge make test

Clean: bin/run git-bridge make clean

Installation

Install dependencies:

sudo apt-get update
sudo apt-get install -y maven
sudo apt-get install -y openjdk-8-jdk
sudo update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
sudo update-alternatives --set javac /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/javac

Create a config file according to the format below.

Run mvn package to build, test, and package it into a jar at target/writelatex-git-bridge-1.0-SNAPSHOT-jar-with-dependencies.jar.

Use java -jar <path_to_jar> <path_to_config_file> to run the server.

Runtime Configuration

The configuration file is in .json format.

{
    "port" (int): the port number,
    "rootGitDirectory" (string): the directory in which to store
                                 git repos and the db/atts,
    "apiBaseUrl" (string): base url for the snapshot api,
    "username" (string, optional): username for http basic auth,
    "password" (string, optional): password for http basic auth,
    "postbackBaseUrl" (string): the postback url,
    "serviceName" (string): current name of writeLaTeX
                            in case it ever changes,
    "oauth2Server" (string): oauth2 server,
                             with protocol and
                             without trailing slash,
                             null or missing if oauth2 shouldn't be used
    },
    "repoStore" (object, optional): { configure the repo store
        "maxFileSize" (long, optional): maximum size of a file, inclusive
    },
    "swapStore" (object, optional): { the place to swap projects to.
                                      if null, type defaults to
                                      "noop"
        "type" (string): "s3", "memory", "noop" (not recommended),
        "awsAccessKey" (string, optional): only for s3,
        "awsSecret" (string, optional): only for s3,
        "s3BucketName" (string, optional): only for s3
    },
    "swapJob" (object, optional): { configure the project
                                    swapping job.
                                    if null, defaults to no-op
        "minProjects" (int64): lower bound on number of projects
                               present. The swap job will never go
                               below this, regardless of what the
                               watermark shows. Regardless, if
                               minProjects prevents an eviction,
                               the swap job will WARN,
        "lowGiB" (int32): the low watermark for swapping,
                          i.e. swap until disk usage is below this,
        "highGiB" (int32): the high watermark for swapping,
                           i.e. start swapping when
                           disk usage becomes this,
        "intervalMillis" (int64): amount of time in between running
                                  swap job and checking watermarks.
                                  3600000 is 1 hour
    }
}

You have to restart the server for configuration changes to take effect.

Creating OAuth app

In dev-env, run the following command in mongo to create the oauth application for git-bridge.

db.oauthApplications.insert({
  "clientSecret" : "v1.G5HHTXfxsJMmfFhSar9QhJLg/u4KpGpYOdPGwoKdZXk=",
  "grants" : [
    "password"
  ],
  "id" : "264c723c925c13590880751f861f13084934030c13b4452901e73bdfab226edc",
  "name" : "Overleaf Git Bridge",
  "redirectUris" : [],
  "scopes" : [
    "git_bridge"
  ]
})