Highly ambitious ATProtocol AppView service and sdks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

try to add back deno cache in the build phase, def dont want to install deps on startup

Chad Miller a967fbf3 4f06e552

+10
+10
frontend/flake.nix
··· 23 23 version = "0.1.0"; 24 24 src = ./.; 25 25 26 + buildInputs = [ pkgs.deno ]; 27 + 28 + buildPhase = '' 29 + export DENO_DIR=$PWD/.deno 30 + ${pkgs.deno}/bin/deno cache --unstable-kv src/main.ts 31 + ''; 32 + 26 33 installPhase = '' 27 34 mkdir -p $out 28 35 cp -r . $out/ 36 + # Copy the cached dependencies 37 + cp -r .deno $out/.deno 29 38 ''; 30 39 }; 31 40 ··· 66 75 Env = [ 67 76 "PORT=8080" 68 77 "KV_PATH=/data/kv.db" 78 + "DENO_DIR=/app/.deno" 69 79 ]; 70 80 }; 71 81 };