settings.sample.py

changeset 0
a172f26a566a
equal deleted inserted replaced
-1:000000000000 0:a172f26a566a
1 """ This file contains the user-specific settings for the scc_access script.
2
3 You should rename the file settings.sample.py to setting.py.
4 """
5
6 # Add here the HTTP user name and password that is needed to access the SCC site.
7 BASIC_LOGIN = ('username', 'password')
8
9 # Add here the user-name and password that is needed to log in to the SCC site.
10 # It is recommended to use credential for a user without management privileges
11 DJANGO_LOGIN = ('username', 'password')
12
13 # Change this to the directory to download the files
14 OUTPUT_DIR = '/path/to/files/scc_output/'
15
16 # SCC base URL. Normally you shouldn't need to change that. You should change
17 # this only if you want to use a different SCC installation e.g. a local version.
18 BASE_URL = 'https://scc.imaa.cnr.it/'

mercurial