about summary refs log tree commit diff
path: root/users/Profpatsch/whatcd-resolver/build.ninja
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2024-03-17T01·04+0100
committerclbot <clbot@tvl.fyi>2024-03-17T01·21+0000
commitefa5fe1239263ad49cbcdb0f0039e93b55686f36 (patch)
treec3e13aa43d0b2c6630059695d6937bd74cbdb254 /users/Profpatsch/whatcd-resolver/build.ninja
parent8ca42dc0cd9c9bf462da8b167eb406a65bc83647 (diff)
feat(users/Profpatsch/whatcd-resolver): add services & readme r/7714
Gives a story for running both jaeger and the reverse proxy, and the
program proper.

`postgres` is still run from the client.

Adds a little readme.

Change-Id: I11185028541c0214e152fd76c9c72b7e2eb11122
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11171
Tested-by: BuildkiteCI
Autosubmit: Profpatsch <mail@profpatsch.de>
Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch/whatcd-resolver/build.ninja')
-rw-r--r--users/Profpatsch/whatcd-resolver/build.ninja20
1 files changed, 20 insertions, 0 deletions
diff --git a/users/Profpatsch/whatcd-resolver/build.ninja b/users/Profpatsch/whatcd-resolver/build.ninja
new file mode 100644
index 000000000000..ff6ba8df04d8
--- /dev/null
+++ b/users/Profpatsch/whatcd-resolver/build.ninja
@@ -0,0 +1,20 @@
+
+builddir = .ninja
+
+outdir = ./output
+
+rule run-services
+  command = s6-svscan ./services
+
+rule run
+  command = execlineb -c '$
+    importas -i DEPOT_ROOT DEPOT_ROOT $
+    importas -i PROFPATSCH_ROOT PROFPATSCH_ROOT cd $$PROFPATSCH_ROOT $
+    nix-run { $$DEPOT_ROOT -A users.Profpatsch.shortcuttable } cabal repl whatcd-resolver/ --repl-options "-e main" $
+    '
+
+build run-services: run-services
+  pool = console
+
+build run: run
+  pool = console