Dodanie brakujÄ…cego skompilowanego locale.
[redakcja.git] / platforma / localsettings.sample
1
2 #  localsettings template for Platforma
3 #
4 #  Duplicate this file as localsettings.py and change it to your liking.
5 #  Settings defined in localsettings.py will override settings from 
6 #  settings.py file. localsettings.py should never be commited 
7 #  to a version control system. Please make changes to settings.py 
8 #  or localsettings.sample instead.
9 #
10
11 # Path to repository with managed documents
12 REPOSITORY_PATH = '/home/user/repository'
13
14 # Subdirectory of STATIC_ROOT containing images
15 IMAGE_DIR = 'images'
16
17 # Authentication via Central Authentication Server
18 INSTALLED_APPS = (
19     'django.contrib.auth',
20     'django.contrib.contenttypes',
21     'django.contrib.sessions',
22     'django.contrib.sites',
23     'django.contrib.admin',
24     'django.contrib.admindocs',
25     
26     'cas_consumer',
27     'explorer',
28     'toolbar',
29     'api',
30     'wysiwyg',
31 )
32
33 AUTHENTICATION_BACKENDS = (
34     'cas_consumer.backends.CASBackend',
35 )
36
37 CAS_BASE = 'http://localhost:7000/'
38 CAS_SERVICE = 'http://localhost:8000/accounts/login/'
39