From: Stefan Gasser Date: Sun, 14 Jun 2026 20:02:05 +0000 (+0200) Subject: Add Conductor workspace configuration (#95) X-Git-Tag: v0.5.0~2 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5e2b1094aacd5786369885b414fb3304140bdcd0;p=sgasser-llm-shield.git Add Conductor workspace configuration (#95) --- diff --git a/.conductor/settings.toml b/.conductor/settings.toml new file mode 100644 index 0000000..0b9f1d1 --- /dev/null +++ b/.conductor/settings.toml @@ -0,0 +1,16 @@ +#:schema https://conductor.build/schemas/settings.repo.schema.json + +[scripts] +setup = """ +bun install +if [ ! -f config.yaml ]; then + sed 's/port: 3000/port: ${CONDUCTOR_PORT:-3000}/' config.example.yaml > config.yaml +fi +mkdir -p data +""" +run = """ +docker compose -p pasteguard-dev --profile dev up presidio -d +CONDUCTOR_PORT=${CONDUCTOR_PORT:-3000} bun run dev +""" +archive = "true" +run_mode = "concurrent"