kanidm/server/daemon/run_insecure_dev_server.sh

27 lines
710 B
Bash
Raw Normal View History

#!/bin/bash
# This script based on the developer readme and allows you to run a test server.
2022-10-17 12:09:47 +02:00
if [ -z "$KANI_CARGO_OPTS" ]; then
KANI_CARGO_OPTS=""
2022-10-17 12:09:47 +02:00
fi
CONFIG_FILE="../../examples/insecure_server.toml"
if [ ! -f "${CONFIG_FILE}" ]; then
SCRIPT_DIR="$(dirname -a "$0")"
echo "Couldn't find configuration file at ${CONFIG_FILE}, please ensure you're running this script from its base directory (${SCRIPT_DIR})."
exit 1
fi
#shellcheck disable=SC2086
cargo run ${KANI_CARGO_OPTS} --bin kanidmd -- cert-generate -c "${CONFIG_FILE}"
2022-05-03 05:24:39 +02:00
COMMAND="server"
if [ -n "${1}" ]; then
COMMAND=$*
fi
#shellcheck disable=SC2086
2022-10-17 12:09:47 +02:00
cargo run ${KANI_CARGO_OPTS} --bin kanidmd -- ${COMMAND} -c "${CONFIG_FILE}"