dev: comments and more complete env variables
This commit is contained in:
parent
df638b0d98
commit
a10f325fde
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue