source myvenv/bin/activatepython3 manage.py runserverIt means DEBUG is set to False. Try uncommenting 'DEBUG = True' in the settings.py file and rerun the app. If formatting reappears, re-comment-out the setting and let the os.environ check run.
python3 manage.py shell
>>> from { file_name } import { function/Class/etc }
>>> print(function())
>>> exit()git status
git add .
git status
git commit -m "<insert message>"
git pushOpen PythonAnywhere
Open the bash console
cd lbenno.pythonanywhere.com
git pullor, open the virtual env console
(lbenno.pythonanywhere.com) 18:30 ~/lbenno.pythonanywhere.com (master)$
(lbenno.pythonanywhere.com) 18:30 ~/lbenno.pythonanywhere.com (master)$ git pullpip3 freeze > requirements.txtpython manage.py collectstaticEnsure migrations were made before the git pull into Pythonanywhere.
python manage.py makemigrations
python manage.py migrateThen, from Pythonanywhere
python manage.py migrateGot to the 'Web' section of PythonAnywhere and click 'Reload lbenno/pythonanywhere.com'