Includes: API (Express/TypeScript), Astro site, Python workers, document generators, FCC compliance tools, Canada CRTC formation, Ansible infrastructure, and deployment scripts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
74 lines
1.2 KiB
Django/Jinja
74 lines
1.2 KiB
Django/Jinja
{{ ansible_managed | comment }}
|
|
#
|
|
# SHKeeper Helm Chart Values — Performance West
|
|
# Deployed at: {{ shkeeper_domain }}
|
|
# Admin panel: {{ shkeeper_admin_domain }}
|
|
#
|
|
|
|
storageClassName: {{ shkeeper_storage_class }}
|
|
|
|
{% if shkeeper_cryptos.btc | default(false) %}
|
|
#
|
|
# Bitcoin (BTC) — Electrum-based daemon
|
|
#
|
|
btc:
|
|
enabled: true
|
|
{% endif %}
|
|
|
|
{% if shkeeper_cryptos.eth | default(false) %}
|
|
#
|
|
# Ethereum (ETH) + ERC-20 tokens (USDC, USDT, DAI)
|
|
#
|
|
eth:
|
|
enabled: true
|
|
{% endif %}
|
|
|
|
{% if shkeeper_cryptos.matic | default(false) %}
|
|
#
|
|
# Polygon (MATIC) + ERC-20 tokens on Polygon
|
|
#
|
|
matic:
|
|
enabled: true
|
|
{% endif %}
|
|
|
|
{% if shkeeper_cryptos.trx | default(false) %}
|
|
#
|
|
# Tron (TRX) + TRC-20 tokens (USDT, USDC)
|
|
#
|
|
trx:
|
|
enabled: true
|
|
{% endif %}
|
|
|
|
{% if shkeeper_cryptos.bnb | default(false) %}
|
|
#
|
|
# BNB Smart Chain + BEP-20 tokens
|
|
#
|
|
bnb:
|
|
enabled: true
|
|
{% endif %}
|
|
|
|
{% if shkeeper_cryptos.ltc | default(false) %}
|
|
#
|
|
# Litecoin (LTC)
|
|
#
|
|
ltc:
|
|
enabled: true
|
|
{% endif %}
|
|
|
|
{% if shkeeper_cryptos.doge | default(false) %}
|
|
#
|
|
# Dogecoin (DOGE)
|
|
#
|
|
doge:
|
|
enabled: true
|
|
{% endif %}
|
|
|
|
{% if shkeeper_cryptos.xmr | default(false) %}
|
|
#
|
|
# Monero (XMR) — requires full node
|
|
#
|
|
monero:
|
|
enabled: true
|
|
fullnode:
|
|
enabled: true
|
|
{% endif %}
|