From e8aa389c2b3823f2009ba93dc5b9af2e0c05cc18 Mon Sep 17 00:00:00 2001 From: Tom Robinson <tlrobinson@gmail.com> Date: Thu, 9 Jun 2016 15:22:31 -0700 Subject: [PATCH] Add h2-with-db task to easily get a H2 REPL to your metabase.db --- project.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 3f99f0f6a59..d0b359398a0 100644 --- a/project.clj +++ b/project.clj @@ -9,7 +9,8 @@ "check-reflection-warnings" ["with-profile" "+reflection-warnings" "check"] "test" ["with-profile" "+expectations" "expectations"] "generate-sample-dataset" ["with-profile" "+generate-sample-dataset" "run"] - "h2" ["with-profile" "+h2-shell" "run"]} + "h2" ["with-profile" "+h2-shell" "run"] + "h2-with-db" ["with-profile" "+h2-shell" "run" "-url" "jdbc:h2:./metabase.db" "-user" "" "-password" "" "-driver" "org.h2.Driver"]} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/core.async "0.2.374"] [org.clojure/core.match "0.3.0-alpha4"] ; optimized pattern matching library for Clojure -- GitLab