nuke everything
diff --git a/fdm_uli.view.lkml b/fdm_uli.view.lkml
deleted file mode 100644
index 3a579cc..0000000
--- a/fdm_uli.view.lkml
+++ /dev/null
@@ -1,30 +0,0 @@
-view: fdm_uli {
-  derived_table: {
-    sql: select partition_date, service_id, account_id from `irvine-sbx.fdm.uli`
-      ;;
-  }
-
-  measure: count {
-    type: count
-    drill_fields: [detail*]
-  }
-
-  dimension: partition_date {
-    type: string
-    sql: ${TABLE}.partition_date ;;
-  }
-
-  dimension: service_id {
-    type: string
-    sql: ${TABLE}.service_id ;;
-  }
-
-  dimension: account_id {
-    type: string
-    sql: ${TABLE}.account_id ;;
-  }
-
-  set: detail {
-    fields: [partition_date, service_id, account_id]
-  }
-}
diff --git a/hdeist-fdm.model.lkml b/hdeist-fdm.model.lkml
deleted file mode 100644
index b5f54cb..0000000
--- a/hdeist-fdm.model.lkml
+++ /dev/null
@@ -1,20 +0,0 @@
-connection: "concord"
-
-include: "/*.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: fdm_uli {}
-#   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} ;;
-#   }
-# }
diff --git a/hello.md b/hello.md
deleted file mode 100644
index fdcba06..0000000
--- a/hello.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# Hello
-
-hello there!!
-
-Put your documentation here! Your text is rendered with [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown).
-
-Click the "Edit Source" button above to make changes.