File: settings.py

package info (click to toggle)
python-django-threadedcomments 0.5.3-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 804 kB
  • sloc: python: 2,521; makefile: 13
file content (24 lines) | stat: -rw-r--r-- 511 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os

DEFAULT_CHARSET = 'utf-8'

DATABASES = {
    'default' : {
        'ENGINE' : 'django.db.backends.sqlite3',
        'NAME' : os.path.join(os.path.dirname(__file__), 'threadedcomments_test.db'),
    }
}

ROOT_URLCONF = 'threadedcomments.urls'

GRAVATAR_DEFAULT_IMG = 'http://site.gravatar.com/images/common/top/logo.gif'

SITE_ID = 1

INSTALLED_APPS = (
    'django.contrib.sessions',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sites',
    'threadedcomments',
)