forked from dropbox/trapperkeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrapdoor.yaml
35 lines (30 loc) · 926 Bytes
/
trapdoor.yaml
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
35
# Takes a SqlAlchemy URL to the database to store traps. More details
# can be found at the following URL:
# http://docs.sqlalchemy.org/en/rel_0_9/core/engines.html#database-urls
#
# Type: str
database: "sqlite:///trapperkeeper.sqlite"
# Number of worker processes to fork for receving requests. This option
# is mutually exclusive with debug.
#
# Type: int
num_processes: 8
# The port to listen to requests on.
#
# Type: int
port: 8888
# All traps are stored in the database in UTC. This option chooses the
# timezone for displaying datetime values.
#
# Type: str
timezone: "America/Los_Angeles"
# The format in which to display dates in the interface. More details here:
# https://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior
#
# Type: str
date_format: "%Y-%m-%d %I:%M %p"
# Passing debug option down tornado. Useful for development to
# automatically reload code.
#
# Type: bool
debug: false