#!/bin/bash if git --version; then echo "git installed, ok" else sudo apt update && sudo apt install git fi sudo apt update sudo apt install liblzma-dev libpcre3-dev libblas-dev liblapack-dev pkg-config libgsl-dev libbz2-dev postgresql postgresql-server-dev-9.6 nginx #echo "Which user?" #read USER #sudo adduser --disabled-password --gecos "" $USER #sudo su $USER curl -sSL https://get.haskellstack.org/ | sh stack update stack upgrade git clone https://gitlab.iscpif.fr/gargantext/haskell-gargantext.git cd haskell-gargantext git clone https://gitlab.iscpif.fr/gargantext/purescript-gargantext mkdir deps cd deps git clone https://gitlab.iscpif.fr/gargantext/clustering-louvain.git git clone https://github.com/np/servant-job.git git clone https://github.com/np/patches-map git clone https://gitlab.com/npouillard/patches-class.git git clone https://github.com/delanoe/haskell-opaleye git clone -b next --single-branch https://github.com/delanoe/hsparql cd .. stack setup stack build stack install # Specific to our servers ### Configure timezone and locale ################################### echo "########### LOCALES & TZ #################" echo "Europe/Paris" > /etc/timezone dpkg-reconfigure --frontend=noninteractive tzdata #ENV TZ "Europe/Paris" sed -i -e 's/# en_GB.UTF-8 UTF-8/en_GB.UTF-8 UTF-8/' /etc/locale.gen && \ sed -i -e 's/# fr_FR.UTF-8 UTF-8/fr_FR.UTF-8 UTF-8/' /etc/locale.gen && \ locale-gen && \ update-locale LANG=fr_FR.UTF-8 && \ update-locale LANGUAGE=fr_FR.UTF-8 && \ update-locale LC_ALL=fr_FR.UTF-8 ################################################################ # Database configuration # CREATE USER gargantua WITH PASSWORD $(grep DB_PASS gargantext.ini) # GRANT ALL PRIVILEGES ON DATABASE gargandbV4 to gargantua ####################################################################### ## POSTGRESQL DATA (as ROOT) ####################################################################### sed -iP "s%^data_directory.*%data_directory = \'\/srv\/gargandata\'%" /etc/postgresql/9.6/main/postgresql.conf echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/9.6/main/pg_hba.conf echo "listen_addresses='*'" >> /etc/postgresql/9.6/main/postgresql.conf