2024-06-30 12:06:40 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
|
|
|
|
# Se positionner sur la racine du projet
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
cd ${DIR}
|
|
|
|
cd ../..
|
|
|
|
DIR=$(pwd)
|
|
|
|
|
|
|
|
bin/console d:s:u --force --complete
|
|
|
|
|
2024-09-28 17:22:48 +02:00
|
|
|
yarn encore prod
|
2024-07-27 09:15:34 +02:00
|
|
|
|
2024-06-30 12:06:40 +02:00
|
|
|
bin/console app:Init
|
2024-09-28 17:22:48 +02:00
|
|
|
bin/console app:Cron
|
2024-06-30 12:06:40 +02:00
|
|
|
|
|
|
|
exec $@
|