aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-03 16:20:45 -0700
committerFuwn <[email protected]>2021-05-03 16:20:45 -0700
commit0b4299ac3b897c11877d1936641248747742413c (patch)
tree1a22a2388562ff38bf2dd9eac55842a530def760 /shell.nix
parentdocs(readme): add development prerequisites (diff)
downloadwhirl-0b4299ac3b897c11877d1936641248747742413c.tar.xz
whirl-0b4299ac3b897c11877d1936641248747742413c.zip
feat(db): use diesel instead of sqlx, implement database tests
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index 620500f..b7651ac 100644
--- a/shell.nix
+++ b/shell.nix
@@ -6,5 +6,5 @@ in
pkgs.mkShell {
buildInputs = with pkgs; [ niv rust ];
- DATABASE_URL = "sqlite:whirl.db";
+ DATABASE_URL = "whirl.sqlite3";
}