-
Notifications
You must be signed in to change notification settings - Fork 4
/
debian.cfg
34 lines (29 loc) · 920 Bytes
/
debian.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Jacquard configuration.
# Storage configuration. Defaults here to storing to a file.
[storage]
engine = file
url = file:/var/jacquard/jacquard.db
# If you wanted to connect to Redis, the storage section would look something
# more like this:
#
# engine = redis
# url = redis://redis.example.com:6379/
# User directory source. By default this is configured to use the dummy
# directory (effectively, not to use a directory).
[directory]
engine = dummy
# An example of using a custom directory engine MyDirectory from
# /etc/jacquard/plugins/my_directory.py:
#
# [plugins:directory_engines]
# my_directory_engine = my_directory:MyDirectory
#
# [directory]
# engine = my_directory_engine
# Any custom paths to add to the Python interpreter. By default this is the
# normal system Python path plus /etc/jacquard/plugins.
#
# Each path entry gets a descriptive key.
#
# [paths]
# my_extra_path = /usr/share/my-plugins