This commit is contained in:
Melvin Strobl
2026-02-03 21:43:09 +01:00
parent 2304b5388e
commit 2cd8e8f634
21 changed files with 4960 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
#! /usr/bin/env bash
# Exit in case of error
set -e
docker-compose down -v --remove-orphans # Remove possibly previous broken stacks left hanging after an error
if [ $(uname -s) = "Linux" ]; then
echo "Remove __pycache__ files"
sudo find . -type d -name __pycache__ -exec rm -r {} \+
fi
docker-compose build
docker-compose up -d
docker-compose exec -T backend bash scripts/tests-start.sh "$@"