#! /bin/sh # create and sanitise files for pushing to repo # Philip Sargent 2020/06/20 echo deprecations. python -Wall manage.py check -v 3 2>deprecations.txt >/dev/null echo diffsettings. python manage.py diffsettings | grep "###" > diffsettings.txt echo pip freeze. pip freeze > requirements.txt echo inspectdb. # this next line requires database setting to be troggle.sqlite: python manage.py inspectdb > troggle-inspectdb.py #egrep -in "unable|error" troggle-inspectdb.py echo remove passwords. cp localsettings.py localsettingsWSL.py sed -i '/EXPOUSERPASS/ s/^.*$/EXPOUSERPASS = "nnn:gggggg - real-expo-password--is-imported-from-credentials.py"/' diffsettings.txt echo " reset: EXPOUSERPASS = \"nnn:gggggg\" - real-expo-password--is-imported-from-credentials.py" sed -i '/EMAIL_HOST_PASSWORD/ s/^.*$/EMAIL_HOST_PASSWORD = "real-email-password--is-imported-from-credentials.py"/' diffsettings.txt echo " reset: EMAIL_HOST_PASSWORD = \"real-email-password-is-imported-from-credentials.py\"" sed -i '/SECRET_KEY/ s/^.*$/SECRET_KEY = "real-SECRET_KEY-is-imported-from-credentials.py"/' diffsettings.txt echo " reset: SECRET_KEY = \"real-SECRET_KEY-is-imported-from-credentials.py\"" # # Do these before final testing, *not* just before pushing: # in ./pre-run.sh # python reset-django.py # python manage.py makemigrations # python manage.py test # python manage.py inspectdb > troggle-inspectdb.py # egrep -i "unable|error" troggle-inspectdb.py