blob: a012f3d1375f65e1e2acd3d381096ec9149b6f97 (
plain)
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
|
# catlfish
catlfish is a Certificate Transparency log server (RFC 6962).
# Compile
$ make
$ make release
# Requirements
A compiled plop application in ../plop
A compiled https://github.com/basho/lager (for logging) in ../lager
A compiled https://github.com/mochi/mochiweb (for web server functionality) in ../mochiweb
A compiled https://github.com/benoitc/hackney.git (http client) in ../hackney
Note: hackney is dependent on rebar, but doesn't include one. You can
use the rebar from lager by adding "REBAR=../lager/rebar" to the make
command line, or install rebar yourself.
# Start
$ (cd rel ; bin/erl -config catlfish)
# Logs and traces
Logs can be found in log/.
The amount of log sent to the console can be adjusted at runtime using
lager:set_loglevel(lager_console_backend, NewLevel).
where ''NewLevel'' is one of
debug, info, notice, warning, error, critical, alert, emergency
|