aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-03 16:20:45 +0000
committerFuwn <[email protected]>2021-05-03 16:20:45 +0000
commit262d59d7b3bcfda94d333d1acc8ed1a505df1c0f (patch)
tree4fdcc0ae5df1bf4c0713eeb7d4bf712c812c3ec7 /shell.nix
parentdocs(readme): add development prerequisites (diff)
downloadwhirl-262d59d7b3bcfda94d333d1acc8ed1a505df1c0f.tar.xz
whirl-262d59d7b3bcfda94d333d1acc8ed1a505df1c0f.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";
}