lnurld/server/templates/config.yaml.j2
author Luke Hoersten <luke@hoersten.org>
Fri, 15 Sep 2023 22:45:51 -0500
changeset 31 562b76293a66
permissions -rw-r--r--
Moved lnurld from my general ansible roles repo to the btc specific repo.

listen: {{lnurld_host}}:{{lnurld_port}}
data-dir: {{lnurld_data_dir}}
credentials:
  admin: {{lnurld_admin_pass}}
lnd:
  cert-file: {{lnurld_lnd_cert_file}}
  macaroon-file: {{lnurld_lnd_invoice_macaroon}}
accounts:
{% for account in lnurld_accounts %}
  {{account.name}}:
    currency: usd
    description: {{account.desc}}
    is-also-email: {{account.is_email|default(false)}}
    comment-allowed: 210
    min-sendable: 1
    max-sendable: 1_000_000
{% else %}  []
{% endfor %}