blob: 4a9e9a7d07a0b4d5716ec74f955a93f1864b4c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
use crate::errors::AppError;
use tokio_postgres::{Client, NoTls};
/// Setup database connection. Get variable `DATABASE_URL` from the environment.
pub async fn setup() -> Result<Client, AppError> {
let database_url = &crate::config::CONFIG.database_url;
let (client, connection) = tokio_postgres::connect(database_url, NoTls).await.unwrap();
// Spawn a new task to run the connection to the database
tokio::spawn(async move {
if let Err(e) = connection.await {
tracing::error!("Database connection error: {}", e);
}
});
Ok(client)
}
|