1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-12-26 07:38:36 -06:00

chg: Default db location

This commit is contained in:
Sayantan Santra 2024-10-02 23:46:35 -05:00
parent a7cf0cdf30
commit 3688692c7a
Signed by: SinTan1729
GPG key ID: 0538DD402EA50898

View file

@ -27,7 +27,7 @@ async fn main() -> Result<()> {
let db_location = env::var("db_url") let db_location = env::var("db_url")
.ok() .ok()
.filter(|s| !s.trim().is_empty()) .filter(|s| !s.trim().is_empty())
.unwrap_or(String::from("unset")); .unwrap_or(String::from("urls.sqlite"));
let port = env::var("port") let port = env::var("port")
.unwrap_or(String::from("4567")) .unwrap_or(String::from("4567"))