21 lines
375 B
Erlang
21 lines
375 B
Erlang
{application, activitypub_server,
|
|
[
|
|
{description, "A simple ActivityPub server in Erlang"},
|
|
{vsn, "0.1.0"},
|
|
{modules, [
|
|
activitypub_server_app,
|
|
activitypub_server_sup,
|
|
hello_handler,
|
|
webfinger_handler
|
|
]},
|
|
{registered, []},
|
|
{applications, [
|
|
kernel,
|
|
stdlib,
|
|
cowboy,
|
|
jsx
|
|
]},
|
|
{mod, {activitypub_server_app, []}},
|
|
{env, []}
|
|
]}.
|