2 # localsettings template for Platforma
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.
11 # Path to repository with managed documents
12 REPOSITORY_PATH = '/home/user/repository'
14 # Subdirectory of STATIC_ROOT containing images
17 # Authentication via Central Authentication Server
19 'django.contrib.auth',
20 'django.contrib.contenttypes',
21 'django.contrib.sessions',
22 'django.contrib.sites',
23 'django.contrib.admin',
24 'django.contrib.admindocs',
32 AUTHENTICATION_BACKENDS = (
33 'cas_consumer.backends.CASBackend',
36 CAS_BASE = 'http://localhost:7000/'
37 CAS_SERVICE = 'http://localhost:8000/accounts/login/'