diff --git a/.gitignore b/.gitignore index d3ada42..24588bd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ .DS_Store /.cache /node_modules +testing.db diff --git a/shell.nix b/shell.nix index 52dbc8e..ed9e928 100644 --- a/shell.nix +++ b/shell.nix @@ -6,6 +6,8 @@ mkShell rec { nativeBuildInputs = [ pkg-config openssl + # TODO: Figure out a better way to include sqlx only in dev shells (release shell?) + sqlx-cli ]; buildInputs = additionalBuildInputs; LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;