Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
0c3cb5bc
Commit
0c3cb5bc
authored
9 years ago
by
Allen Gilliland
Browse files
Options
Downloads
Plain Diff
Merge pull request #2209 from metabase/h2-task
Add 'lein h2' to easily get a H2 console
parents
7bc3cd18
d93036a4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
project.clj
+4
-2
4 additions, 2 deletions
project.clj
with
4 additions
and
2 deletions
project.clj
+
4
−
2
View file @
0c3cb5bc
...
...
@@ -8,7 +8,8 @@
:aliases
{
"bikeshed"
[
"bikeshed"
"--max-line-length"
"240"
]
"check-reflection-warnings"
[
"with-profile"
"+reflection-warnings"
"check"
]
"test"
[
"with-profile"
"+expectations"
"expectations"
]
"generate-sample-dataset"
[
"with-profile"
"+generate-sample-dataset"
"run"
]}
"generate-sample-dataset"
[
"with-profile"
"+generate-sample-dataset"
"run"
]
"h2"
[
"with-profile"
"+h2-shell"
"run"
]}
: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
...
...
@@ -136,4 +137,5 @@
:jar-name
"reset-password.jar"
;; Exclude everything except for reset-password specific code in the created jar
:jar-exclusions
[
#
"^(?!metabase/reset_password).*$"
]
:target-path
"reset-password-artifacts/%s"
}})
; different than ./target because otherwise lein uberjar will delete our artifacts and vice versa
:target-path
"reset-password-artifacts/%s"
}
; different than ./target because otherwise lein uberjar will delete our artifacts and vice versa
:h2-shell
{
:main
org.h2.tools.Shell
}})
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment