Remove docker-compose-development.yml

This commit is contained in:
Andreas Zweili 2023-07-13 22:08:53 +02:00
parent 8af2b25042
commit 07a8d8cb33
1 changed files with 0 additions and 3 deletions

3
dev.sh
View File

@ -8,7 +8,6 @@ run () {
} }
setup () { setup () {
docker-compose -f docker-compose-development.yml up -d
if [ -f .second_run ]; then if [ -f .second_run ]; then
sleep 2 sleep 2
python ./src/manage.py collectstatic --noinput python ./src/manage.py collectstatic --noinput
@ -47,7 +46,6 @@ docker (){
} }
clean () { clean () {
docker-compose -f docker-compose-development.yml down -v
find . \( -name __pycache__ -o -name "*.pyc" \) -delete find . \( -name __pycache__ -o -name "*.pyc" \) -delete
rm -rf htmlcov/ rm -rf htmlcov/
rm -f src/*/migrations/0*.py rm -f src/*/migrations/0*.py
@ -56,7 +54,6 @@ clean () {
cleanall () { cleanall () {
clean clean
docker-compose -f docker-compose-development.yml down -v --rmi local
rm -r .venv rm -r .venv
} }