aboutsummaryrefslogtreecommitdiff
path: root/config.py
blob: cc1c75f9ae2f0b48ec54bc6bb6dc75e69c05c5ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
DATABASES = {
        'default': 'sqlite',
        'sqlite': {
            'driver': 'sqlite',
            'database': 'pyble.db',
        }
    }

PYBLE_SETTINGS = {
        'default_translation': 'American Standard Version'
    }