Hi!
I have Django app with local sqlite database
My "freudigameisen_pythonanywhere_com_wsgi.py" is
path = '/home/freudigameisen/ich_bau'
if path not in sys.path:
sys.path.append(path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'ich_bau.settings'
But - if I run the 'python manage.py dbshell' or 'python manage.py dbshell --settings ich_bau.settings'
i've got the wrong path to sqlite database (new empty file was created)
How to run the dbshell correctly ?