Compare commits
2 commits
12b0feba96
...
a0f4b8e3e7
Author | SHA1 | Date | |
---|---|---|---|
a0f4b8e3e7 | |||
832cc4ad33 |
2 changed files with 4 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
/.cache
|
/.cache
|
||||||
/node_modules
|
/node_modules
|
||||||
|
testing.db
|
||||||
|
|
|
@ -6,7 +6,10 @@ mkShell rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkg-config
|
pkg-config
|
||||||
openssl
|
openssl
|
||||||
|
# TODO: Figure out a better way to include sqlx only in dev shells (release shell?)
|
||||||
|
sqlx-cli
|
||||||
];
|
];
|
||||||
buildInputs = additionalBuildInputs;
|
buildInputs = additionalBuildInputs;
|
||||||
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
|
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
|
||||||
|
DATABASE_URL = "sqlite:testing.db";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue