Skip to content

Commit d4ffedc

Browse files
authored
Merge pull request #1355 from dennisreimann/d11n-plugins
2 parents b0ce6f8 + f8acaa0 commit d4ffedc

File tree

6 files changed

+2
-81
lines changed

6 files changed

+2
-81
lines changed

.gitignore

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@
1111
/docs/NBXplorer
1212
/docs/Vault
1313
/docs/Zapier
14-
/docs/LNbank
15-
/docs/LNDhubAPI
1614
/docs/Nostr
17-
/docs/PodServer
1815
/docs/Smartstore
1916
/docs/TicketTailor
2017
/docs/Trocador
@@ -26,7 +23,7 @@
2623
/docs/img/btcpayexposecloudflare*
2724
/docs/img/cloudflare*
2825
/docs/img/Cloudflare*
29-
/swagger/plugins/**
26+
/swagger/plugins/btcpay.json
3027

3128
# Constructed docs
3229
/docs/Development/LocalDevelopment.md

docs/.vuepress/config.js

-10
Original file line numberDiff line numberDiff line change
@@ -121,17 +121,7 @@ const sidebarUserGuide = [
121121
collapsable: false,
122122
initialOpenGroupIndex: -1,
123123
children: [
124-
{
125-
title: 'LNbank',
126-
path: '/LNbank/',
127-
children: [
128-
['/LNbank/LNDhub', 'LNDhub Compatibility'],
129-
['/LNbank/Troubleshooting', 'Troubleshooting']
130-
]
131-
},
132-
['/LNDhubAPI/', 'LNDhub API'],
133124
['/Nostr/', 'Nostr'],
134-
['/PodServer/', 'PodServer'],
135125
['/TicketTailor/', 'TicketTailor'],
136126
['/Trocador/', 'Trocador'],
137127
['/Wabisabi/', 'Wabisabi Coinjoin']

docs/.vuepress/preprocessMarkdown.js

-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ const EXTERNAL_DOCS = {
99
Vault: 'https://github.com/btcpayserver/BTCPayServer.Vault',
1010
Transmuter: 'https://github.com/btcpayserver/btcTransmuter',
1111
Zapier: 'https://github.com/btcpayserver/zapier',
12-
LNbank: 'https://github.com/dennisreimann/btcpayserver-plugin-lnbank',
13-
LNDhubAPI: 'https://github.com/dennisreimann/btcpayserver-plugin-lndhub-api',
1412
Nostr: 'https://github.com/Kukks/BTCPayServerPlugins/tree/master/Plugins/BTCPayServer.Plugins.NIP05',
15-
PodServer: 'https://github.com/dennisreimann/btcpayserver-plugin-podserver',
1613
TicketTailor: 'https://github.com/Kukks/BTCPayServerPlugins/tree/master/Plugins/BTCPayServer.Plugins.TicketTailor',
1714
Trocador: 'https://github.com/saltrafael/trocador-plugin',
1815
Wabisabi: 'https://github.com/Kukks/BTCPayServerPlugins/tree/master/Plugins/BTCPayServer.Plugins.Wabisabi',

docs/Development/Plugins.md

-2
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,4 @@ Once you click the `Release` button on the build page, the package won't be in p
349349
For more information check out these repositories with existing plugins:
350350

351351
- [kukks' plugins](https://github.com/Kukks/BTCPayServerPlugins)
352-
- [LNbank](https://github.com/dennisreimann/btcpayserver-plugin-lnbank)
353-
- [PodServer](https://github.com/dennisreimann/btcpayserver-plugin-podserver)
354352
- [Trocador.app](https://github.com/saltrafael/trocador-plugin)

setup-deps.sh

-62
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,7 @@ DOCKER_DIR="$BASE_DIR/deps/docker"
1212
VAULT_DIR="$BASE_DIR/deps/vault"
1313
TRANSMUTER_DIR="$BASE_DIR/deps/transmuter"
1414
ZAPIER_DIR="$BASE_DIR/deps/zapier"
15-
LNBANK_DIR="$BASE_DIR/deps/lnbank"
16-
PODSERVER_DIR="$BASE_DIR/deps/podserver"
1715
TROCADOR_DIR="$BASE_DIR/deps/trocador"
18-
LNDHUBAPI_DIR="$BASE_DIR/deps/lndhub-api"
1916
KUKKS_DIR="$BASE_DIR/deps/kukks"
2017
SMARTSTORE_DIR="$BASE_DIR/deps/smartstore"
2118

@@ -187,65 +184,6 @@ for file in "$DOCS_DIR"/Zapier/*.md; do
187184
update_external "$file" https://github.com/btcpayserver/zapier "$DOCS_DIR"/Zapier/
188185
done
189186

190-
# LNbank
191-
192-
echo "Setup dependency: LNbank"
193-
194-
rm -rf "$LNBANK_DIR"
195-
rm -rf "$DOCS_DIR/LNbank"
196-
mkdir -p "$DOCS_DIR/LNbank"
197-
198-
if [ ! -d "$LNBANK_DIR" ]; then
199-
git clone --depth 1 https://github.com/dennisreimann/btcpayserver-plugin-lnbank.git "$LNBANK_DIR"
200-
fi
201-
202-
cd "$LNBANK_DIR"
203-
cp -r README.md docs/* "$DOCS_DIR/LNbank"
204-
sed -ie 's$(./docs/$(./$g' "$DOCS_DIR/LNbank/README.md"
205-
for file in "$DOCS_DIR"/LNbank/*.md; do
206-
update_external "$file" https://github.com/dennisreimann/btcpayserver-plugin-lnbank "$DOCS_DIR"/LNbank/
207-
done
208-
209-
cp -r BTCPayServer.Plugins.LNbank/Resources/swagger/* "$BASE_DIR/swagger/plugins"
210-
211-
# PodServer
212-
213-
echo "Setup dependency: PodServer"
214-
215-
rm -rf "$PODSERVER_DIR"
216-
rm -rf "$DOCS_DIR/PodServer"
217-
mkdir -p "$DOCS_DIR/PodServer"
218-
219-
if [ ! -d "$PODSERVER_DIR" ]; then
220-
git clone --depth 1 https://github.com/dennisreimann/btcpayserver-plugin-podserver.git "$PODSERVER_DIR"
221-
fi
222-
223-
cd "$PODSERVER_DIR"
224-
cp -r README.md docs/* "$DOCS_DIR/PodServer"
225-
sed -ie 's$(./docs/$(./$g' "$DOCS_DIR/PodServer/README.md"
226-
for file in "$DOCS_DIR"/PodServer/*.md; do
227-
update_external "$file" https://github.com/dennisreimann/btcpayserver-plugin-podserver "$DOCS_DIR"/PodServer/
228-
done
229-
230-
# LNDhub API
231-
232-
echo "Setup dependency: LNDhub API"
233-
234-
rm -rf "$LNDHUBAPI_DIR"
235-
rm -rf "$DOCS_DIR/LNDhubAPI"
236-
mkdir -p "$DOCS_DIR/LNDhubAPI"
237-
238-
if [ ! -d "$LNDHUBAPI_DIR" ]; then
239-
git clone --depth 1 https://github.com/dennisreimann/btcpayserver-plugin-lndhub-api.git "$LNDHUBAPI_DIR"
240-
fi
241-
242-
cd "$LNDHUBAPI_DIR"
243-
cp -r README.md docs/* "$DOCS_DIR/LNDhubAPI"
244-
sed -ie 's$(./docs/$(./$g' "$DOCS_DIR/LNDhubAPI/README.md"
245-
for file in "$DOCS_DIR"/LNDhubAPI/*.md; do
246-
update_external "$file" https://github.com/dennisreimann/btcpayserver-plugin-lndhub-api "$DOCS_DIR"/LNDhubAPI/
247-
done
248-
249187
# Trocador
250188

251189
echo "Setup dependency: Trocador"

swagger/plugins/shim/shim.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)