aboutsummaryrefslogtreecommitdiff
path: root/src/cli.rs
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 /src/cli.rs
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 'src/cli.rs')
-rw-r--r--src/cli.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 10a1c46..9cba139 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -11,7 +11,7 @@ impl CLI {
let matches = Self::cli().get_matches();
Self::calc_log_level(&matches);
- std::env::set_var("DATABASE_URL", "sqlite:whirl.db");
+ std::env::set_var("DATABASE_URL", "whirl.sqlite3");
matches
}