aboutsummaryrefslogtreecommitdiffstats
path: root/brevisurl/settings.py
blob: 32d7fbf9ce8b7e9fad40d0849b730988d8818436 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import string

from django.conf import settings


# Default backend used to for get_connection() fuction
DEFAULT_BACKEND = getattr(settings, 'BREVISURL_BACKEND', 'brevisurl.backends.local.BrevisUrlBackend')

# Domain that is used to create shortened urls
LOCAL_BACKEND_DOMAIN = getattr(settings, 'BREVISURL_BACKEND_LOCAL_DOMAIN', None)

# Characters that are used to generate tokens for local backend
LOCAL_BACKEND_TOKEN_CHARS = getattr(settings, 'BREVISURL_LOCAL_BACKEND_TOKEN_CHARS', list(string.ascii_letters + string.digits))