Remove the database when cleaning

This commit is contained in:
Andreas Zweili 2023-07-18 20:41:12 +02:00
parent 42965ba283
commit a623062fb5
1 changed files with 1 additions and 1 deletions

2
dev.sh
View File

@ -50,7 +50,7 @@ docker (){
clean () {
find . \( -name __pycache__ -o -name "*.pyc" \) -delete
rm -rf htmlcov/
rm -rf htmlcov/ .direnv/postgres/
rm -f src/*/migrations/0*.py .direnv/first_run
}