about summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-04-08T13·49+0200
committerVincent Ambo <tazjin@gmail.com>2018-04-08T13·49+0200
commitf3f509d4631eb7f968894f1f5445071164b2e515 (patch)
treed0c13a5b28058cd12fe6f0241625c73980886926 /src/main.rs
parent72691c8d6386678be51c71d62e50d168d8fe28bb (diff)
feat(main): Bootstrap project entrypoint
This doesn't really do anything yet.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000000..2cb814a343
--- /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.
+}