hyperkitty-chromium / src /hyperkitty.app.src
SNAPKITTYWEST's picture
Add src/hyperkitty.app.src
5ab07e9 verified
Raw
History Blame Contribute Delete
929 Bytes
{application, hyperkitty,
[{description, "HyperKitty Chromium -- Erlang-native browser agent platform"},
{vsn, "0.1.0"},
{registered, [hyperkitty_sup,
hk_event_bus,
hk_agent_registry,
hk_browser_registry,
hk_frontend_client_registry,
hk_health]},
{mod, {hyperkitty_app, []}},
{applications,
[kernel,
stdlib,
sasl,
crypto,
inets,
ssl,
cowlib,
ranch,
cowboy,
gun,
jsx
]},
{env, [
{chromium_executable, "/opt/pw-browsers/chromium-1194/chrome-linux/chrome"},
{api_port, 8420},
{max_browser_sessions, 8},
{default_agent_limits, #{
max_actions => 40,
max_execution_ms => 300000,
max_browser_sessions => 2,
max_network_requests => 200,
max_search_iterations => 5
}}
]},
{modules, []},
{licenses, ["Apache-2.0"]},
{links, []}
]}.