mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
19 lines
496 B
Bash
Executable file
19 lines
496 B
Bash
Executable file
#/bin/bash
|
|
echo "###############################";
|
|
echo "start update of symfony project";
|
|
echo "###############################";
|
|
git pull origin master --strategy-option theirs
|
|
composer --version
|
|
composer self-update
|
|
composer update
|
|
yarn --version
|
|
|
|
bash compile-frontend.sh
|
|
|
|
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 "###########";
|