blob: 89c707cf95d863901f4dd40fe78dc99c2c275fd3 (
plain)
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
|
#!/usr/bin/sh
set -eu
HOST=${HOST:-localhost}
PORT=${PORT:-3000}
echo >&2 "listening on $HOST:$PORT"
if [ $# -gt 1 ]; then
echo >&2 "usage: $0 optional_path"
exit 1
fi
if [ $# = 1 ]; then
echo >&2 "overriding $DOCS with $1"
DOCS=$1
fi
if [ -z "${DOCS:-}" ]; then
echo >&2 'root directory not set in $DOCS'
exit 1
fi
echo >&2 "using root directory $DOCS"
mkdir -p "$DOCS"
exec /usr/bin/deno run \
--allow-all \
--unstable-kv \
--unstable-worker-options \
/usr/lib/silverbullet/silverbullet.js \
--hostname "$HOST" \
--port "$PORT" \
"$DOCS"
|