wip: attempt to use SSL cert

This commit is contained in:
dboures 2023-05-14 03:21:34 -05:00
parent a4bf9a35be
commit c20429bcc5
No known key found for this signature in database
GPG Key ID: AB3790129D478852
1 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,11 @@ use crate::utils::Config;
pub async fn connect_to_database(config: &Config) -> anyhow::Result<Pool> {
let mut x = PgConfig::new();
// TODO: fix
x.host = Some("".to_owned());
x.user = Some("".to_owned());
x.password = Some("".to_owned());
x.dbname = Some("postgres".to_owned());
x.manager = Some(ManagerConfig {