summaryrefslogtreecommitdiff
path: root/src/db.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-20 21:11:43 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-20 21:11:43 +0200
commitc2b09dbb88591d9695c1cd2227c5d559b4a8e775 (patch)
tree8773ae641ea61c90024c3e7b5dd184dbf6a3cbab /src/db.rs
parent3c8b004d6ecb6764cd5bc935aaeaf884040320ab (diff)
Add state for database
Diffstat (limited to 'src/db.rs')
-rw-r--r--src/db.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/db.rs b/src/db.rs
new file mode 100644
index 0000000..b74550b
--- /dev/null
+++ b/src/db.rs
@@ -0,0 +1,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 {
+ eprintln!("Database connection error: {}", e);
+ }
+ });
+
+ Ok(client)
+}