From a10f325fde694b000c67c78b53993a21758455ba Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Sun, 12 Jan 2025 18:43:35 -0800 Subject: [PATCH] dev: comments and more complete env variables --- shell.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index 57f11e2..37fc7ce 100644 --- a/shell.nix +++ b/shell.nix @@ -24,6 +24,7 @@ mkShell rec { sqlite ] ++ additionalBuildInputs; LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs; - DATABASE_URL = "sqlite://.cache/data"; - CACHE_DIR = "./.cache"; + DATABASE_URL = "sqlite://.cache/data"; # This is only used by the sqlx-cli + CACHE_DIR = "./.cache"; # The default is a system path, not suitable for dev environments + DIST_DIR = "./dist"; # This is currently the default, but the dev shell should override it anyway }