combo/tests/settings.py

20 lines
542 B
Python

LANGUAGE_CODE = 'en-us'
KNOWN_SERVICES = {
'wcs': {
'default': {'title': 'test', 'url': 'http://127.0.0.1:8999/',
'secret': 'combo', 'orig': 'combo'},
'other': {'title': 'test2', 'url': 'http://127.0.0.2:8999/',
'secret': 'combo', 'orig': 'combo'},
},
'passerelle': {
'default': {'title': 'test', 'url': 'http://example.org',
'secret': 'combo', 'orig': 'combo'}
}
}
LINGO_API_SIGN_KEY = '12345'
import tempfile
MEDIA_ROOT = tempfile.mkdtemp('combo-test')