forked from zediogoviana/ethcule-poirot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.exs
More file actions
23 lines (18 loc) · 660 Bytes
/
Copy pathconfig.exs
File metadata and controls
23 lines (18 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Config
config :bolt_sips, Bolt,
url: System.get_env("DATABASE_URL"),
# Comment out ssl if using local connection
ssl: [verify: :verify_none],
basic_auth: [username: System.get_env("NEO4J_USER"), password: System.get_env("NEO4J_PASSWORD")],
pool_size: 200
config :ethcule_poirot,
default_api_adapter: Adapters.Api.Blockscout,
pool_size: 30
config :ethcule_poirot, Adapters.Api.Blockscout,
api_url: System.get_env("BLOCKSCOUT_API_URL"),
api_timeout: 120_000
config :ethcule_poirot, Adapters.Api.DissrupTheGraph,
api_url: System.get_env("DISSRUP_THE_GRAPH_API_URL"),
api_timeout: 120_000
config :logger, :console,
level: :info