summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.rs16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 594491f..0ef80bb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,8 +1,20 @@
+mod config;
+
use actix_web::{web, App, HttpResponse, HttpServer};
+use dotenv::dotenv;
+use tokio_postgres::NoTls;
+
+use crate::config::Config;
+
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
- HttpServer::new(|| {
- App::new().service(
+ dotenv().ok();
+
+ let config = Config::from_env().unwrap();
+ let pool = config.pg.create_pool(NoTls).unwrap();
+
+ HttpServer::new(move || {
+ App::new().data(pool.clone()).service(
web::resource("/")
.to(|| HttpResponse::Ok().body("Hello from Rust!")),
)