A place where I can share the contents of my brain - a simple blog started at a DjangoGirls event using Python and Django
A blog application started at a DjangoGirls’ event using Python and Django. Built and maintained until now, inflicting my thoughts on the internet.
You can see the blog online at https://naeglinghaff.pythonanywhere.com/
It will also shortly be available at katewriting.co.uk.
Clone this repo and then in the root directory:
python manage.py migrate
python manage.py runserver
To run the tests
python manage.py test blog.tests
To see an accurate representation of coverage, run the coverage report separately (coverage.py loads in the models too soon hence the differing results)
coverage run --source='.' ./manage.py test blog.tests
coverage report