From 9493e2dbf9671d55fea2a96aa057589670e9673a Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Tue, 31 Mar 2020 17:12:09 -0700 Subject: Massively improve the que-website curl was throwing an exception if the file got too long, because I was passing the entire file contents in the arguments to curl. I tried using a tmp file but that didn't work for some reason. So I switched to req and that seems to work well. I also made it faster by serving all pages concurrently, and I spruced up the CSS a ton. --- default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'default.nix') diff --git a/default.nix b/default.nix index 13ded48..5622c74 100644 --- a/default.nix +++ b/default.nix @@ -176,6 +176,11 @@ in rec { Run.Que.Website = buildGhc { name = "Run.Que.Website"; nick = "que-website"; - deps = [ "process" ]; + deps = [ + "async" + "process" + "protolude" + "req" + ]; }; } -- cgit v1.2.3