# -*- coding: utf-8 -*-
# Django settings for poco project in production environment
from .base import *

DEBUG = False
TEMPLATE_DEBUG = DEBUG
HTML_MINIFY = not DEBUG

# Hosts/domain names that are valid for this site; required if DEBUG is False
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
ALLOWED_HOSTS = ['$project_lower.org']

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': '$project_lower',                      # Or path to database file if using sqlite3.
        # The following settings are not used with sqlite3:
        'USER': '$project_lower',
        'PASSWORD': '',
        'HOST': '',                      # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
        'PORT': '',                      # Set to empty string for default.
    }
}
