create hdeist-test-model.lkml
diff --git a/hdeist-test-model.model.lkml b/hdeist-test-model.model.lkml
index 0a6ecd2..32a716e 100644
--- a/hdeist-test-model.model.lkml
+++ b/hdeist-test-model.model.lkml
@@ -1,5 +1,27 @@
+
 connection: "concord"
 
 include: "explores/*.view.lkml"
 
 label: "Cloud Sales BI"
+
+connection: "concord-test-oauth"
+
+# include: "/views/*.view.lkml"                # include all views in the views/ folder in this project
+# include: "/**/*.view.lkml"                 # include all views in this project
+# include: "my_dashboard.dashboard.lookml"   # include a LookML dashboard called my_dashboard
+
+# # Select the views that should be a part of this model,
+# # and define the joins that connect them together.
+#
+# explore: order_items {
+#   join: orders {
+#     relationship: many_to_one
+#     sql_on: ${orders.id} = ${order_items.order_id} ;;
+#   }
+#
+#   join: users {
+#     relationship: many_to_one
+#     sql_on: ${users.id} = ${orders.user_id} ;;
+#   }
+# }