- Mock app UIs (ElectrumX, LND, Fedimint, Bitcoin Core) + the "Not available" notice now use the Archipelago black theme and show the app's My-Apps icon. - Bitcoin Core gets its own UI (/app/bitcoin-core/) so it no longer shows Bitcoin Knots branding; the Knots-branded bitcoin-ui shell is reserved for Bitcoin Knots. - ElectrumX now serves the real electrs-ui shell (+ qrcode.js + a dummy /electrs-status) with the correct ElectrumX icon; "Electrs" renamed to ElectrumX. - My Apps: pre-install Bitcoin Knots again, drop ThunderHub, rename Electrs→ElectrumX. - App store no longer shows "Checking…" forever in demo — non-demoable apps show "No demo" immediately (skip the container-scan state). - Relay endpoint no longer reveals a real domain (randomised host). - Dockerfile/.dockerignore copy docker/electrs-ui into the backend image. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
27 lines
555 B
Plaintext
27 lines
555 B
Plaintext
# Ignore everything except what the demo Dockerfiles need
|
|
*
|
|
|
|
# Allow neode-ui (frontend + mock backend + docker configs)
|
|
!neode-ui/
|
|
|
|
# Allow demo assets (AIUI pre-built dist)
|
|
!demo/
|
|
|
|
# Allow the Bitcoin UI + ElectrumX UI mock shells (served from /docker/*)
|
|
!docker/
|
|
docker/*
|
|
!docker/bitcoin-ui/
|
|
!docker/electrs-ui/
|
|
|
|
# Allow backend source for ISO source builds
|
|
!core/
|
|
!scripts/
|
|
!image-recipe/
|
|
image-recipe/build/
|
|
image-recipe/results/
|
|
image-recipe/output/
|
|
|
|
# Exclude nested node_modules (will npm install in container)
|
|
neode-ui/node_modules
|
|
neode-ui/dist
|