Pete Tinkler

Results 4 comments of Pete Tinkler

``` INSTALLED_APPS = [ 'django.contrib.admin', ... ] += env.list("ADDITIONAL_APPS", default=[]) ``` dev.env ``` ADDITIONAL_APPS=devapp1,devapp2,devapp3 ``` prod.env ``` ADDITIONAL_APPS=prodapp1,prodapp2,prodapp3 ``` Personally INSTALLED_APPS is one of the things I leave to the...

> what does this mean. So how you do it then I have multiple settings files e.g. `development.py`, `production.py`, `testing.py` that all inherit from a `base.py` settings file. Common settings...

That's up to you- I prefer a mix of approaches. I only use Django environ to keep sensitive information out of the repository and to read client-specific details from client.env...

did a quick n dirty PR for this: https://github.com/DaftMonk/angular-tour/pull/25