-
Notifications
You must be signed in to change notification settings - Fork 15
/
lfe.config
59 lines (57 loc) · 1.9 KB
/
lfe.config
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
#(project
(#(meta
(#(name docs)
#(description "Documentation source for Lisp Flavoured Erlang.")
#(version "3.0.0")
#(keywords ("LFE" "Lisp" "Library" "Web" "HTML" "XML" "Markup" "Static" "Docs"
"Documentation"))
#(license
(#(name "Apache License, Version 2.0")
#(url "http://www.apache.org/licenses/LICENSE-2.0")))
#(maintainers
((#(name "Duncan McGreggor")
#(email "[email protected]"))))
#(repos
(#(github "lfe/docs")))))
#(app
(#(mod #(docs ()))))))
#(barista
(#(httpd-conf
(#(port 8080)
#(server-name "docs-dev")
#(server-root "./")
#(docroot "docs")
#(host "localhost")
#(mime-types (#("html" "text/html")
#("css" "text/css")
#("js" "application/javascript")
#("json" "application/javascript")
#("png" "image/png")
#("jpeg" "image/jpeg")
#("jpg" "image/jpeg")))
#(index-files ("index.html"))
#(log-dir "log")
#(error-log "errors.log")
#(access-log "access.log")))))
#(logging (
#(log-level info)
#(colored true)
#(colors (#(timestamp (color green))
#(process (color cyan))
#(date (color green))
#(time (color green))
#(modfunc (color yellow))
#(message (color green))
#(debug (color greenb))
#(info (color blue))
#(notice (color cyan))
#(warning (color yellow))
#(error (color red))
#(critical (color yellowb))
#(alert (color magentab))
#(emergency (color redb))))
#(backend lager)
#(options (#(lager_console_backend (
info
#(logjam-formatter
(date " " time " [" pid "] [" severity "] " message "\n"))))))))