forked from webmachine/webmachine
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathwebmachine.app.src
More file actions
31 lines (30 loc) · 937 Bytes
/
webmachine.app.src
File metadata and controls
31 lines (30 loc) · 937 Bytes
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
%%-*- mode: erlang -*-
{application, webmachine,
[
{description, "webmachine"},
{vsn, git},
{modules, []},
{registered, []},
{applications, [kernel,
stdlib,
crypto,
mochiweb]},
{mod, {webmachine_app, []}},
{env,
%% env is THE place for expected defaults. Even if it's just
%% comments, it's worthwhile
[
{log_handlers, []}
,{error_handler, webmachine_error_handler}
%% error_handler is a module that implements the function render_error/3
,{rewrite_module, undefined}
%% module that has rewrite/5
,{server_name, undefined}
%% string() for the "Server" response header
]},
{maintainers,["Sean Cribbs", "Joe DeVivo", "Bryan Fink",
"Kelly McLaughlin", "Jared Morrow", "Andy Gross",
"Steve Vinoski"]},
{licenses,["Apache"]},
{links,[{"Github","https://github.com/webmachine/webmachine"}]}
]}.