RadarParlamentar-MES2017-1/radar

View on GitHub
radar_parlamentar/settings/development.py.template

Summary

Maintainability
Test Coverage
from defaults import *

print('Starting DEVELOPMENT environment ...')

DEBUG = True
TEMPLATE_DEBUG = DEBUG

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': 'radar',                      # Or path to database file if using sqlite3.
        'USER': 'radar',                       # Not used with sqlite3.
        'PASSWORD': 'coloque_a_senha_aqui',   # Not used with sqlite3.
        'HOST': 'localhost',                           # Set to empty string for localhost. Not used with sqlite3.
        'PORT': '',                           # Set to empty string for default. Not used with sqlite3.
    }
}