1{
2    'KnownModels': {
3        # this is keyed by host name
4        # if host name does not match, '_default_' is used
5        # the hosts of '_all_' is appended for all hosts
6
7        #'hostname': [
8        #    'path to a .mkmodel #1',
9        #    'path to a .mkmodel #2',
10        #],
11
12        '_default_': [],
13        '_all_': [],
14    },
15
16    'KnownDatabases': {
17        # regarding keys, this dictionary works like KnownModels above
18
19        #'hostname': [
20        #    {'database': 'MySQL', 'host': 'my.host.com', 'user': 'user', 'password': 'pwd'},
21        #],
22
23        '_default_': [],
24        '_all_': [
25        ],
26    }
27}
28