lnurld/server/templates/config.yaml.j2
author Luke Hoersten <luke@hoersten.org>
Mon, 29 Jul 2024 12:42:17 -0500
changeset 34 70cdf181aa9e
parent 31 562b76293a66
permissions -rw-r--r--
Version update.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     1
listen: {{lnurld_host}}:{{lnurld_port}}
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     2
data-dir: {{lnurld_data_dir}}
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     3
credentials:
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     4
  admin: {{lnurld_admin_pass}}
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     5
lnd:
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     6
  cert-file: {{lnurld_lnd_cert_file}}
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     7
  macaroon-file: {{lnurld_lnd_invoice_macaroon}}
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     8
accounts:
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     9
{% for account in lnurld_accounts %}
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
    10
  {{account.name}}:
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
    11
    currency: usd
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
    12
    description: {{account.desc}}
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
    13
    is-also-email: {{account.is_email|default(false)}}
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
    14
    comment-allowed: 210
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
    15
    min-sendable: 1
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
    16
    max-sendable: 1_000_000
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
    17
{% else %}  []
562b76293a66 Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
    18
{% endfor %}