mirror of
https://github.com/typeable/bloodhound.git
synced 2024-12-03 14:12:36 +03:00
23 lines
374 B
Makefile
23 lines
374 B
Makefile
install-with-test-support:
|
|
cabal install --enable-tests
|
|
echo "Make certain you have an elasticsearch instance on localhost:9200 !"
|
|
cabal test
|
|
|
|
test:
|
|
echo "Make certain you have an elasticsearch instance on localhost:9200 !"
|
|
cabal clean
|
|
cabal test
|
|
|
|
build:
|
|
cabal build
|
|
|
|
test-repl:
|
|
cabal repl tests
|
|
|
|
repl:
|
|
cabal repl
|
|
|
|
reset:
|
|
rm -rf .cabal-sandbox
|
|
cabal sandbox init
|