dev: comments and more complete env variables

This commit is contained in:
Zynh Ludwig 2025-01-12 18:43:35 -08:00
parent df638b0d98
commit a10f325fde

View file

@ -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
}