]> git.99rst.org Git - sgasser-llm-shield.git/commitdiff
Add Conductor workspace configuration (#95)
authorStefan Gasser <redacted>
Sun, 14 Jun 2026 20:02:05 +0000 (22:02 +0200)
committerGitHub <redacted>
Sun, 14 Jun 2026 20:02:05 +0000 (22:02 +0200)
.conductor/settings.toml [new file with mode: 0644]

diff --git a/.conductor/settings.toml b/.conductor/settings.toml
new file mode 100644 (file)
index 0000000..0b9f1d1
--- /dev/null
@@ -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"
git clone https://git.99rst.org/PROJECT