[ngrams] fixes for list JSON import
[gargantext.git] / bin / install
index aa43f934ff9ea0a89c7cb6df3c0113c864d91ff8..624c7242c50f3b3a406d95f2d491cbb540b68082 100755 (executable)
@@ -1,3 +1,12 @@
 #!/bin/bash
 
-stack install --profile --test --haddock
+#stack install --nix --profile --test --fast --no-install-ghc --skip-ghc-check
+
+if [[ $1 == "dev" ]] ;
+  then
+    echo "DEV install"
+    env LANG=C.UTF-8 stack install --nix --no-install-ghc --skip-ghc-check --no-haddock-deps
+  else
+    echo "PROD install (with documentation)" 
+    env LANG=C.UTF-8 stack install --haddock --nix --test --no-install-ghc --skip-ghc-check --no-haddock-deps
+fi