summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 0ef80bb11233717ddc1f864ef8ac077f69407168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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<()> {
    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!")),
        )
    })
    .bind("127.0.0.1:8080")?
    .run()
    .await
}