ixc / ixc-project-template

Bare-bones skeleton project template, for use with the `django-admin.py startproject` command.
1 stars 0 forks source link

Add details to README which indicate changes are required for development environments #9

Closed markfinger closed 8 years ago

markfinger commented 9 years ago

In particular, we need to wave a flag that leaving the following settings uncommented will completely cripple a devserver.

# DEBUG = True  # Show detailed error pages when exceptions are raised
# TEMPLATE_DEBUG = True  # Show details when exceptions are raised in templates

# CSRF_COOKIE_SECURE = False  # Don't require HTTPS for CSRF cookie
# SESSION_COOKIE_SECURE = False  # Don't require HTTPS for session cookie
markfinger commented 8 years ago

The default local settings has the settings grouped by context (dev/stg/prod/etc) now, so it's certainly an improvement.