-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.py.old
62 lines (51 loc) · 1.23 KB
/
config.py.old
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import os
from autoloaders import Git
beard_paths = [
"beards/",
"beard_cache/",
"examples/",
# Beards can come from anywhere!
os.path.expanduser("~/git/"),
# Even from git!
#Git("https://github.com/nasfarley88/pdfpreviewbeard.git"),
]
# Beards can be specified as "all" which will attempt to load everything found
# in beard_paths or can be specified as a list of strings of which beards to
# load
# beards = "all"
beards = [
"askfor",
"debugonlyexample",
# "postcats",
# "xkcdbeard",
#"listbeard",
#"relay_beard",
# "repo_helper",
#"except_on_purpose",
# "teleplot",
#"githubbeard",
#"debugbeard",
#"dicebeard",
#"BabyFeederBeard",
# "namedvotebeard",
# "nth_home_beard",
# "pdfpreviewbeard", # From git (above)
]
stache_paths = [
"moustaches",
]
# staches = "all"
staches = [
"postcats",
]
db_url = "sqlite:///skybeard-2.db"
db_bin_path = "./db_binary_entries"
#put yourself, and anyone else you wish to, as an admin
admins = [
("Nathanael Farley", 89593615)
]
#web server config
host = '0.0.0.0'
port = 8000
__doc__ = """This is sample documentation. Please update in your config.py!
Current plugins enabled: {}""".format(beards)