summaryrefslogtreecommitdiffstats
path: root/settings.py.default
blob: 3379f94e405bc124a3328043d56d3473f2061fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
PAD = {
    'apikey': '1234',
    'host': 'localhost'
}

LDAP = {
    'host': 'ldaps://host',
    'base_dn': [('ou', 'people'), ('dc', 'example'), ('dc', 'org')],
}

DATABASE = {
    'name': 'example.db',
    'engine': 'peewee.SqliteDatabase',
}

DEBUG = False
SECRET_KEY = 'youShouldChangeThis'