From e444330e4ed0b6002463040a211ccc76470caeb4 Mon Sep 17 00:00:00 2001 From: Sjur Millidahl Date: Wed, 16 Mar 2022 19:52:22 +0100 Subject: [PATCH] more rename --- .github/workflows/{nix.yml => heroku.yml} | 0 hie.yaml | 9 ++++++--- nix/docker.nix | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) rename .github/workflows/{nix.yml => heroku.yml} (100%) diff --git a/.github/workflows/nix.yml b/.github/workflows/heroku.yml similarity index 100% rename from .github/workflows/nix.yml rename to .github/workflows/heroku.yml diff --git a/hie.yaml b/hie.yaml index f04f68e..111ca8e 100644 --- a/hie.yaml +++ b/hie.yaml @@ -1,10 +1,13 @@ cradle: cabal: - path: "src" - component: "lib:signature-visualizer" + component: "lib:type-depict" - path: "app/Main.hs" - component: "signature-visualizer:exe:signature-visualizer" + component: "type-depict:exe:type-depict" + + - path: "webserver/Main.hs" + component: "type-depict:exe:type-depict-ws" - path: "test" - component: "signature-visualizer:test:signature-visualizer-test" + component: "type-depict:test:type-depict-test" diff --git a/nix/docker.nix b/nix/docker.nix index 6b314ad..e6706f4 100644 --- a/nix/docker.nix +++ b/nix/docker.nix @@ -33,6 +33,6 @@ in with nixpkgs; dockerTools.buildLayeredImage { "TZ=Europe/Oslo" "PATH=${bash}/bin:${busybox}/bin:${curl}/bin" ]; - Cmd = [ "${artifact}/bin/type-depict-webserver" ]; + Cmd = [ "${artifact}/bin/type-depict-ws" ]; }; } \ No newline at end of file