File size: 929 Bytes
5ab07e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{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, []}
 ]}.