From 8e9dea9aef4dc298e1d7f7fe4af4e55aa0ca93ff Mon Sep 17 00:00:00 2001 From: Schrottkatze Date: Wed, 6 Nov 2024 17:05:06 +0100 Subject: [PATCH] change db url --- crates/backend/src/state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/backend/src/state.rs b/crates/backend/src/state.rs index 31a7a3e..31f7f51 100644 --- a/crates/backend/src/state.rs +++ b/crates/backend/src/state.rs @@ -6,7 +6,7 @@ use thiserror::Error; use crate::model::{Chat, Message}; type Result = std::result::Result; -const DB_URL: &str = "postgres://localhost/chatdings"; +const DB_URL: &str = "postgres://chatdings@localhost/chatdings"; #[derive(Debug, Clone)] pub struct AppState {