Merge branch 'dev' into dev-doc-table-score
[gargantext.git] / devops / debian / install
index 65ed1853859fa7dbd213da75dc07b9d0b7c0d560..0ae92802f5565f8a9dd338147085ee48a7b02740 100755 (executable)
@@ -21,45 +21,30 @@ sudo apt upgrade
 sudo apt install tmux htop
 
 ########################################################################
-tmux
-########################################################################
-# Open Stack only: attach volumes
-# attach the volume created (OS interface or API)
-sudo fdisk -l
-sudo fdisk /dev/vdb (n,p,t,83,w)
-sudo mkfs.ext4 /dev/vdb1
-
-sudo blkid
-# copy UUID in fstab (same parameters)
-sudo vim /etc/fstab 
-
-########################################################################
-
 sudo sed -i "s/stretch/buster/g" /etc/apt/sources.list
-sudo apt update
+#sudo apt update
 sudo apt dist-upgrade
 # sudo reboot #recommended
 ########################################################################
 
-sudo apt update
-sudo apt install liblzma-dev libpcre3-dev libblas-dev liblapack-dev pkg-config libgsl-dev libbz2-dev postgresql postgresql-server-dev-11 nginx libigraph0-dev
-
+#sudo apt update
+sudo apt install liblzma-dev libpcre3-dev libblas-dev liblapack-dev pkg-config libgsl-dev libbz2-dev postgresql postgresql-server-dev-11 nginx libigraph0-dev libgfortran-8-dev
 
 sudo apt install git
-git config --global user.email "contact@gargantext.org"
-git config --global user.name "Gargantua"
+#git config --global user.email "contact@gargantext.org"
+#git config --global user.name "Gargantua"
 
 
 ########################################################################
-
 echo "Which user?"
-read USER
+#read USER
 USER="gargantua"
 sudo adduser --disabled-password --gecos "" $USER
 
-cd /home
-sudo mv -if /home/$USER /srv/
-sudo ln -s /srv/$USER
+########################################################################
+#cd /home
+#sudo mv -if /home/$USER /srv/
+#sudo ln -s /srv/$USER
 
 curl -sSL https://get.haskellstack.org/ | sh
 
@@ -68,23 +53,14 @@ sudo su $USER
 stack update
 stack upgrade
 
-git clone https://gitlab.iscpif.fr/gargantext/haskell-gargantext.git
+#git clone https://gitlab.iscpif.fr/gargantext/haskell-gargantext.git
 
-cd haskell-gargantext
+#cd haskell-gargantext
 ##########
-git clone https://gitlab.iscpif.fr/gargantext/purescript-gargantext
-cd purescript-gargantext
 
-# as sudoer
-curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
-echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
-sudo apt update
-sudo apt install yarn
-# as user
-yarn install && yarn install-ps && yarn build
-
-# temporary bug (help welcome)
-cp src/index.html dist/index.html
+if [[ ! -d "purescript-gargantext" ]]; then
+  ./devops/debian/install-purescript
+fi
 
 #########################################################################
 
@@ -95,21 +71,26 @@ stack setup && stack build && stack install
 # build deps
 
 
-#!/bin/bash
-mkdir deps
-cd deps
+if [[ ! -d "deps" ]]; then
+  mkdir -v deps
+  cd deps
 
-git clone https://gitlab.iscpif.fr/gargantext/clustering-louvain-cplusplus.git
-cd clustering-louvain-cplusplus
-./install
-cd ..
+  if [[ ! -d "clustering-louvain-cplusplus" ]]; then
+    ../devops/debian/install-clustering-louvain
+  fi
 
-sudo apt install default-jdk
-wget https://dl.gargantext.org/coreNLP.tar.bz2
-tar xvjf coreNLP.tar.bz2
-# CoreNLP needs to be started
-# ./startServer.sh
+  sudo apt install default-jdk
+  if [[ ! -f "coreNLP.tar.bz2" ]]; then
+    wget https://dl.gargantext.org/coreNLP.tar.bz2
+  fi
+  if [[ ! -d "home" ]]; then
+    tar xvjf coreNLP.tar.bz2
+  fi
+  # CoreNLP needs to be started
+  # ./startServer.sh
 
+  cd ..
+fi
 
 
 # Specific to our servers
@@ -137,12 +118,7 @@ tar xvjf coreNLP.tar.bz2
 ## POSTGRESQL DATA (as ROOT)
 #######################################################################
 
-PGVersion = 11
-GARGDATA = "/srv/gargantua/gargandata"
-mkdir $GARGDATA
-sudo apt install rsync
-sudo sed -iP "s%^data_directory.*%data_directory = \'$GARGADATA\'%" /etc/postgresql/$PGVersion/main/postgresql.conf
-sudo rsync -av /var/lib/postgresql/$PGVersion/main $GARGDATA
+./devops/debian/install-postgres
 
 # configure the database with script in devops/postgres
 # edit gargantext.ini