summaryrefslogtreecommitdiff
path: root/local_settings.py~
blob: 7441ea8ce39a59c2eee3091440fd1f9299abf8f5 (plain)
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
### Django settings for archlinux project.

## Debug settings
DEBUG = False

## Notification admins
ADMINS = (
   # ('Joe Admin', 'joeadmin@example.com'),
	('Nicolas Reynolds', 'fauno@kiwwwi.com.ar'),
    	('Konstantinos Karantias', 'kostis@gtklocker.com'),
)

## Postgresql Database Settings
DATABASE_ENGINE		= 'postgresql_psycopg2'
DATABASE_NAME		= 'parabolitsa'
DATABASE_USER		= 'parabolaweb'
DATABASE_PASSWORD	= 'prbl16'
DATABASE_HOST       = ''
DATABASE_PORT       = ''

## Define cache middleware settings
CACHE_BACKEND = 'memcached://127.0.0.1:11211'
CACHE_MIDDLEWARE_SECONDS = 900
CACHE_MIDDLEWARE_KEY_PREFIX = 'arch'

## location for saving dev pictures
MEDIA_ROOT = '/srv/http/web/media/'

## web url for serving image files
MEDIA_URL = 'http://parabola.kiwwwi.com.ar:8090/media/'

## Make this unique, and don't share it with anybody.
SECRET_KEY = ''

#dummy cache
if DEBUG:
    CACHE_BACKEND = 'dummy:///'

# vim: set ts=4 sw=4 et: