-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.py.example
31 lines (26 loc) · 1.26 KB
/
config.py.example
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
#Title bar text
TITLE = 'Panoptes'
#Timeout for db queries
TIMEOUT = 30
###########################################################################################################
# Server side file locations
#########################################################################################################
# Directory where disk-held data will be stored by panoptes - created if not existing
BASEDIR = '/panoptes/basedir'
#Dir which is scanned for data to import - created if not existing
#If this is empty, examples datasets will be copied to it
SOURCEDATADIR = '/panoptes/sourcedir'
###########################################################################################################
# CAS authentication
#########################################################################################################
#The URL of your CAS server - if this is set then CAS will be enabled
# e.g. https://mydomain/cas
CAS_SERVICE = ''
#This is the CAS protocol version versions 2 and 3 supported (3 is only available in CAS 4)
CAS_VERSION = 3
#A URL to use as the link to logout
CAS_LOGOUT_PAGE = '/logout'
#Where to go when you've logged out - will send you to the entry page if not set
CAS_LOGOUT_DESTINATION = ''
#A page to show if validation fails
CAS_FAILURE_PAGE = None