mediocre-blog/srv-dev-env.sh
2022-09-13 12:25:45 +02:00

16 lines
279 B
Bash

test_dir="$(mktemp -d)"
trap "rm -rf $test_dir" EXIT
mkdir -p "$test_dir"/run
mkdir -p "$test_dir"/data
test_cfg="(import ./config.nix) // {
runDir=\"${test_dir}/run\";
dataDir=\"${test_dir}/data\";
}"
nix-shell -A srv.shell \
--arg config "$test_cfg" \
"$@"