Compare commits

...

10 Commits

Author SHA1 Message Date
Kilian ec661af76b Remove React plugin submodule 2024-11-11 23:16:33 +01:00
Kilian bce5af676e Latest Pt.2 2022-04-25 04:53:44 +02:00
Kilian 328bfaed92 Merge branch 'master' of https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-OctoberPlugins 2022-04-25 04:52:53 +02:00
Kilian 6cc10f9a46 Latest 2022-04-25 04:52:13 +02:00
Kilian Hofmann 4301013547 Latest 2021-09-14 10:10:52 +02:00
Kilian 0adb11a225 Newest Modules 2021-08-14 22:39:54 +02:00
Kilian 49ee51f114 Require 2021-08-14 15:25:34 +02:00
Kilian 72e54f1119 CD 2021-08-14 15:19:35 +02:00
Kilian c560f37742 Merge branch 'master' of https://git.hofmannnet.myhome-server.de/germanairlines/GermanAirlinesVA-OctoberPlugins 2021-08-14 15:02:25 +02:00
Kilian 81161a4db7 Install Script yarn 2021-08-14 15:02:14 +02:00
10 changed files with 52 additions and 13 deletions
-3
View File
@@ -7,9 +7,6 @@
[submodule "GermanAirlinesVA-Schooling"] [submodule "GermanAirlinesVA-Schooling"]
path = GermanAirlinesVA-Schooling path = GermanAirlinesVA-Schooling
url = https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Schooling.git url = https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Schooling.git
[submodule "GermanAirlinesVA-React"]
path = GermanAirlinesVA-React
url = https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-React.git
[submodule "GermanAirlinesVA-Routes"] [submodule "GermanAirlinesVA-Routes"]
path = GermanAirlinesVA-Routes path = GermanAirlinesVA-Routes
url = https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Routes.git url = https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Routes.git
+2 -1
View File
@@ -7,6 +7,7 @@
"germanairlinesva/schooling": "dev-master", "germanairlinesva/schooling": "dev-master",
"germanairlinesva/fleet": "dev-master", "germanairlinesva/fleet": "dev-master",
"germanairlinesva/react": "dev-master", "germanairlinesva/react": "dev-master",
"germanairlinesva/routes": "dev-master" "germanairlinesva/routes": "dev-master",
"germanairlinesva/social": "dev-master"
} }
} }
+4
View File
@@ -24,6 +24,10 @@ repos="{
\"ga.routes\": { \"ga.routes\": {
\"type\": \"git\", \"type\": \"git\",
\"url\": \"https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Routes.git\" \"url\": \"https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Routes.git\"
},
\"ga.social\": {
\"type\": \"git\",
\"url\": \"https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Social.git\"
} }
}" }"
require="{ require="{
+40 -2
View File
@@ -17,10 +17,48 @@ if [ $? != 0 ]; then
exit 1 exit 1
fi fi
cd .. whiptail --msgbox "Installing packages" 7 23
cd ../plugins/germanairlinesva/fleet
yarn install
if [ $? != 0 ]; then
echo -e "\033[0;31mCould not install fleet packages"
exit 1
fi
cd ../graphql
yarn install
if [ $? != 0 ]; then
echo -e "\033[0;31mCould not install graphql packages"
exit 1
fi
cd ../react
yarn install
if [ $? != 0 ]; then
echo -e "\033[0;31mCould not install react packages"
exit 1
fi
cd ../routes
yarn install
if [ $? != 0 ]; then
echo -e "\033[0;31mCould not install routes packages"
exit 1
fi
cd ../schooling
yarn install
if [ $? != 0 ]; then
echo -e "\033[0;31mCould not install schooling packages"
exit 1
fi
cd ../social
yarn install
if [ $? != 0 ]; then
echo -e "\033[0;31mCould not install social packages"
exit 1
fi
cd /var/www/ga
whiptail --msgbox "Setting ownership" 7 21 whiptail --msgbox "Setting ownership" 7 21
chown www-data -R . chown www-data:www-data -R .
if [ $? != 0 ]; then if [ $? != 0 ]; then
echo -e "\033[0;31mCould not set ownership to www-data" echo -e "\033[0;31mCould not set ownership to www-data"
exit 1 exit 1