├── .gitignore └── my_django_starter.py /.gitignore: -------------------------------------------------------------------------------- 1 | */* 2 | __pycache__ 3 | *.pyc -------------------------------------------------------------------------------- /my_django_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricius1/my-django-starter/HEAD/my_django_starter.py --------------------------------------------------------------------------------