Spaces:
Sleeping
Sleeping
File size: 379 Bytes
bdc2878 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/env sh
set -eu
ROOT_DIR="$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)"
DATA_DIR="${DATA_DIR:-$ROOT_DIR/data}"
LOG_DIR="${LOG_DIR:-$ROOT_DIR/logs}"
DEFAULT_CONFIG="$ROOT_DIR/config.defaults.toml"
mkdir -p "$DATA_DIR" "$LOG_DIR"
if [ ! -f "$DATA_DIR/config.toml" ]; then
cp "$DEFAULT_CONFIG" "$DATA_DIR/config.toml"
fi
chmod 600 "$DATA_DIR/config.toml" || true
|