♻️ Refactor project generation, discard cookiecutter, use plain git/clone/fork (#553)
This commit is contained in:

committed by
GitHub

parent
30c722339b
commit
455de4d9a9
15
src/scripts/test-local.sh
Normal file
15
src/scripts/test-local.sh
Normal 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 /app/tests-start.sh "$@"
|
Reference in New Issue
Block a user