diff --git a/app/Resources/views/logged/previsionnel.html.twig b/app/Resources/views/logged/previsionnel.html.twig index 1e9dc713..a82cdcf1 100755 --- a/app/Resources/views/logged/previsionnel.html.twig +++ b/app/Resources/views/logged/previsionnel.html.twig @@ -116,7 +116,7 @@
- Exemples: + Exemples de postes de dépenses à ajouter: {% endverbatim %} {{ " diff --git a/install.sh b/install.sh index 6c22c214..0cf8cc77 100755 --- a/install.sh +++ b/install.sh @@ -1,4 +1,8 @@ #!/bin/bash + +echo "################################"; +echo "start INSTALL of symfony project"; +echo "################################"; echo "checking requirements"; composer --version yarn --version @@ -16,3 +20,7 @@ sudo setfacl -R -m u:"$HTTPDUSER":rwX -m u:$(whoami):rwX var echo "update database"; php bin/console doctrine:schema:update --dump-sql php bin/console doctrine:schema:update --force + +echo "################################"; +echo "end INSTALL of symfony project"; +echo "################################"; \ No newline at end of file diff --git a/update.sh b/update.sh index f7dbb2c1..4cd4e581 100755 --- a/update.sh +++ b/update.sh @@ -1,6 +1,15 @@ #/bin/bash +echo "###############################"; echo "start update of symfony project"; +echo "###############################"; git pull origin master --strategy-option theirs +composer --version +yarn --version + yarn run encore production +php bin/console doctrine:schema:update --dump-sql +php bin/console doctrine:schema:update --force php bin/console cache:clear -eprod +echo "###########"; echo "update done"; +echo "###########"; \ No newline at end of file