mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-25 23:28:37 -06:00
chg: Default db location
This commit is contained in:
parent
a7cf0cdf30
commit
3688692c7a
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ async fn main() -> Result<()> {
|
|||
let db_location = env::var("db_url")
|
||||
.ok()
|
||||
.filter(|s| !s.trim().is_empty())
|
||||
.unwrap_or(String::from("unset"));
|
||||
.unwrap_or(String::from("urls.sqlite"));
|
||||
|
||||
let port = env::var("port")
|
||||
.unwrap_or(String::from("4567"))
|
||||
|
|
Loading…
Reference in a new issue