Fix Install Jenkins
Some checks failed
Neutral/pipeline/head There was a failure building this commit

This commit is contained in:
Raphix
2023-03-19 14:23:55 +01:00
parent 9a354b69b5
commit a01851211f
3 changed files with 26 additions and 10 deletions

20
script/neutral_deploy.sh Normal file
View File

@ -0,0 +1,20 @@
echo "[Neutral-Deploy] - Stage - Déploiement - START "
echo "[Neutral-Deploy] - Arrêt de Neutral : Processing"
pm2 stop Neutral
pm2 delete neutral
echo "[Neutral-Deploy] - Arrêt de Neutral : Success"
echo "[Neutral-Deploy] - Supression de Neutral : Processing"
rm -rf ./neutral
echo "[Neutral-Deploy] - Supression de Neutral : Success"
echo "[Neutral-Deploy] - Installation de Neutral : Processing"
git clone https://git.raphix.fr/infrastructure/neutral.git
echo "[Neutral-Deploy] - Installation de Neutral : Success"
echo "[Neutral-Deploy] - Installation des dépendances : Processing"
cd ./neutral
npm install
echo "[Neutral-Deploy] - Installation des dépendances : Success"
echo "[Neutral-Deploy] - Démarrage de Neutral : Processing"
cd ..
pm2 start neutral.config.js
echo "[Neutral-Deploy] - Démarrage de Neutral : Success"
echo "[Neutral-Deploy] - Stage - Déploiement - END"