mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-09-21 18:39:05 +02:00
FRANCIS_HOST decides where the Francis actor runtime lives. When set to "embedded" (the default), Pocket ID starts the runtime inside its own process. Any other value is the address, or a comma-separated list of addresses, of a standalone Francis runtime. Pocket ID then connects to it as a remote actor host and starts no embedded runtime. Because when using a remote runtime, it's likewise not possible to enforce a single instance of Pocket ID is running at once, the env vars currently have the `EXPERIMENTAL_` prefix, are **undocumented**, and show a warning if used. Notes: - Connecting to a standalone runtime also needs FRANCIS_HOST_PSK or FRANCIS_HOST_JWT_FILE, and optionally (but recommended) FRANCIS_CA. - When connecting to a remote runtime, exporting Pocket ID data does not include the actor state, which will need to be backed up and restored separately
29 lines
1.0 KiB
Bash
Executable File
29 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
# Prints the Francis version Pocket ID depends on, formatted as the tag of the runtime's container image.
|
|
#
|
|
# The Go module is the single source of truth for the version: the standalone runtime the E2E tests run against
|
|
# has to be the same version as the client Pocket ID is built with, and pinning it in two places lets them drift.
|
|
#
|
|
# Usage, from this directory:
|
|
# echo "FRANCIS_VERSION=$(./francis-version.sh)" > .env
|
|
#
|
|
# This is a plain shell script rather than "go list" because the E2E workflow does not set up Go.
|
|
set -eu
|
|
|
|
go_mod="$(CDPATH='' cd -- "$(dirname -- "$0")/../../backend" && pwd)/go.mod"
|
|
|
|
if [ ! -f "$go_mod" ]; then
|
|
echo "francis-version.sh: cannot find $go_mod" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Module versions carry a leading "v" that container tags do not, so it is stripped
|
|
version=$(sed -n 's|^[[:space:]]*github\.com/italypaleale/francis v\([^[:space:]]*\).*|\1|p' "$go_mod" | head -n 1)
|
|
|
|
if [ -z "$version" ]; then
|
|
echo "francis-version.sh: no github.com/italypaleale/francis requirement found in $go_mod" >&2
|
|
exit 1
|
|
fi
|
|
|
|
printf '%s\n' "$version"
|