-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathsyntect_server
More file actions
executable file
·39 lines (33 loc) · 1.15 KB
/
syntect_server
File metadata and controls
executable file
·39 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env bash
set -euf -o pipefail
cd "$(dirname "${BASH_SOURCE[0]}")/.." # cd to repo root dir
export ROCKET_SECRET_KEY="+SecretKeyIsIrrelevantAndUnusedPleaseIgnore="
export ROCKET_ENV="production"
if [[ ${USE_SYNTECT_SERVER_FROM_PATH-} == t* ]]; then
# NB: this is NOT the common path - below is.
export QUIET='true'
export ROCKET_LIMITS='{json=10485760}'
export ROCKET_PORT=9238
if [[ "${INSECURE_DEV:-}" == '1' ]]; then
export ROCKET_ADDRESS='127.0.0.1'
fi
exec syntect_server
fi
if [[ -z "${OFFLINE-}" ]] && ! docker pull sourcegraph/syntect_server > /dev/null; then
echo
echo Unable to pull latest container image for sourcegraph/syntect_server from the server.
echo
echo To run the dev server using the latest image available locally, rerun with OFFLINE=true.
exit 1
fi
addr=''
secret_key=''
if [[ "${INSECURE_DEV:-}" == '1' ]]; then
addr='-e ROCKET_ADDRESS=0.0.0.0'
fi
exec docker run --name=syntect_server --rm -p9238:9238 -e QUIET='true' \
-e ROCKET_LIMITS='{json=10485760}' \
-e ROCKET_SECRET_KEY=${ROCKET_SECRET_KEY} \
-e ROCKET_ENV=${ROCKET_ENV} \
${addr} \
sourcegraph/syntect_server