From f3f509d4631eb7f968894f1f5445071164b2e515 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 8 Apr 2018 15:49:27 +0200 Subject: [PATCH] feat(main): Bootstrap project entrypoint This doesn't really do anything yet. --- src/main.rs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/main.rs diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 000000000..2cb814a34 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,26 @@ +#[macro_use] +extern crate diesel; +extern crate chrono; + +pub mod schema; +pub mod models; + +use diesel::prelude::*; +use diesel::pg::PgConnection; +use std::env; + +fn connect_db() -> PgConnection { + let db_url = env::var("DATABASE_URL") + .expect("DATABASE_URL must be set"); + + PgConnection::establish(&db_url) + .expect(&format!("Error connecting to {}", db_url)) +} + +fn main() { + use schema::threads::dsl::*; + use schema::posts::dsl::*; + + let conn = connect_db(); + let threads = threads. +}