aboutsummaryrefslogtreecommitdiff
path: root/comments/src
diff options
context:
space:
mode:
Diffstat (limited to 'comments/src')
-rw-r--r--comments/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/comments/src/main.rs b/comments/src/main.rs
index 7064bca..50f568f 100644
--- a/comments/src/main.rs
+++ b/comments/src/main.rs
@@ -51,7 +51,7 @@ async fn main() {
.unwrap_or_else(|_| "/api".to_string());
let db_connection_str = std::env::var("DATABASE_URL")
- .unwrap_or_else(|_| "postgres://postgres:password@localhost".to_string());
+ .unwrap_or_else(|_| "postgres://comments@localhost/comments".to_string());
let notification_address = std::env::var("NOTIFICATION_ADDRESS").ok();
let mail_opts = notification_address.map(|na| {