-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.py
112 lines (88 loc) · 3.05 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# -*- coding:utf-8 -*-
from os import path
try:
import config
config = config.config
except ImportError, e:
print e
config = {}
BASE_DIR = path.abspath(path.dirname(__file__))
DEBUG = config.get("DEBUG", True)
TEMPLATE_DEBUG = DEBUG
TWITTER_USERNAME=config.get("TWITTER_USERNAME", None)
TWITTER_PASSWORD=config.get("TWITTER_PASSWORD", None)
BIBLION_SECTIONS = [(1, "eventos"), (2, 'tutoriais'), (3, 'notícias'), (4, 'cursos')]
# WIKI PARAMS
# Defines the duration of the soft editing lock on article, in seconds.
WIKI_LOCK_DURATION = 15
# Determines if the wiki will be for registered users only, or
# if it will allow anonimous users.
WIKI_REQUIRES_LOGIN = False
FORCE_LOWERCASE_TAGS = True
# ('Your Name', 'your_email@domain.com'),
ADMINS = config.get("ADMINS", ())
MANAGERS = ADMINS
if DEBUG:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': path.join(BASE_DIR, 'dev.sqlite'), # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
else:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': path.join(BASE_DIR, 'prod.sqlite'),
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
}
}
TIME_ZONE = 'America/Fortaleza'
LANGUAGE_CODE = 'pt-br'
SITE_ID = 1
USE_I18N = True
USE_L10N = True
MEDIA_ROOT = path.join(BASE_DIR, 'media_root')
MEDIA_URL = '/media/'
ADMIN_MEDIA_PREFIX = '/admin_media/'
SECRET_KEY = config.get("SECRET_KEY", "chave secreta")
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
# 'django.template.loaders.eggs.Loader',
)
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware'
)
ROOT_URLCONF = 'pugce.urls'
TEMPLATE_DIRS = (
path.join(BASE_DIR, 'templates'),
path.join(BASE_DIR, 'biblion/templates'),
path.join(BASE_DIR, 'wiki/templates'),
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.admin',
'django.contrib.flatpages',
# -- APPS --
'pugce.biblion',
'pugce.wiki',
'pugce.tagging',
)