mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
10 lines
201 B
Bash
Executable File
10 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ -n "${TURNSTILE_ENV_DIR:-}" ]; then
|
|
exec chpst -e "$TURNSTILE_ENV_DIR" syncthing serve --no-browser --logfile=default
|
|
fi
|
|
|
|
exec syncthing serve --no-browser --logfile=default
|