Simple toy skeleton of a Django project for playing around with Django.
It's sort of a simple rest api over a single resource of a basic counter object.
Create a Python virtual environment and install the dependencies:
pip install -r requirements.txt
pip install -r requirements-dev.txt
Then make sure you export your DJANGO_SETTINGS_MODULE
environment variable:
export DJANGO_SETTINGS_MODULE=djangotest.settings
python manage.py test djangotest