workout-challenge/scripts/dev_clean_db.sh
2025-09-27 18:19:06 +01:00

8 lines
No EOL
504 B
Bash

#!/bin/sh
cd '../src-backend'
redis-cli flushall || echo "Redis Cache could not be flushed"
find . -path "./*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "./data/db_migrations/*" -delete
find /opt/miniconda3/envs/pydev/ -path "*/site-packages/migrations/*.py" -not -name "__init__.py" -delete
find /opt/miniconda3/envs/pydev/ -path "*/site-packages/django/contrib/*/migrations/*.py" -not -name "__init__.py" -delete
find . | grep -E "(__pycache__|\.pyc|\.pyo|\.sqlite3)" | xargs rm -rf