-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathraiflow.yml.example
More file actions
40 lines (33 loc) · 991 Bytes
/
raiflow.yml.example
File metadata and controls
40 lines (33 loc) · 991 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
32
33
34
35
36
37
38
39
40
# RaiFlow Configuration
#
# This file is intentionally minimal and should boot locally as-is.
# Optional subsystems like custody, webhooks, and auto-sweep can be added later.
# All string values may use env:VARIABLE_NAME references.
daemon:
host: "0.0.0.0"
port: 3100
# apiKey: "env:RAIFLOW_API_KEY"
nano:
rpc: []
ws: []
work: []
# Optional overrides. When omitted, RaiFlow falls back to nano-core defaults for RPC/WS/work.
# rpc: ["env:NANO_RPC_URL"]
# ws: ["env:NANO_WS_URL"]
# work: ["env:NANO_WORK_URL"]
invoices:
defaultExpirySeconds: 3600
autoSweep: false
# sweepDestination: "env:RAIFLOW_SWEEP_DESTINATION"
storage:
driver: "sqlite"
path: "./raiflow.db"
webhooks: []
logging:
level: "info"
format: "pretty"
# Optional custody config for managed-account features:
# custody:
# seed: "env:RAIFLOW_CUSTODY_SEED"
# # Required when custody is enabled. RaiFlow does not default this from nano-core.
# representative: "env:RAIFLOW_CUSTODY_REP"