Inviato al Server il primo freeplanet.app

e popolodelnuovomondo.insiemesipuo.app
This commit is contained in:
paoloar77
2022-01-04 19:56:33 +01:00
parent 3344c565f0
commit 1008f3a166
35 changed files with 572 additions and 103 deletions

26
__inizia.sh Normal file
View File

@@ -0,0 +1,26 @@
if [ "$site" = "" ]; then
echo "Lancio senza Parametri !"
else
echo "INIZIO DI $site ... "
mkdir __$site
cp -R src/db _BAK/1/
cp -R src/statics _BAK/1/
cp -R quasar.conf.js _BAK/1/
cp -R package.json _BAK/1/
cp -R .env.development _BAK/1/
cp -R .env.production _BAK/1/
cp -R .env.test _BAK/1/
cp -R root/home _BAK/1/
cp -R _ALL_SITES/$site/db src/
cp -R _ALL_SITES/$site/statics src/
cp -R _ALL_SITES/$site/quasar.conf.js .
cp -R _ALL_SITES/$site/package.json .
cp -R _ALL_SITES/$site/.env.development .
cp -R _ALL_SITES/$site/.env.production .
cp -R _ALL_SITES/$site/.env.test .
cp -R _ALL_SITES/$site/root/home src/root/
fi