Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing my plugins #1355

Merged
merged 2 commits into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@
/docs/NBXplorer
/docs/Vault
/docs/Zapier
/docs/LNbank
/docs/LNDhubAPI
/docs/Nostr
/docs/PodServer
/docs/Smartstore
/docs/TicketTailor
/docs/Trocador
Expand All @@ -26,7 +23,7 @@
/docs/img/btcpayexposecloudflare*
/docs/img/cloudflare*
/docs/img/Cloudflare*
/swagger/plugins/**
/swagger/plugins/btcpay.json

# Constructed docs
/docs/Development/LocalDevelopment.md
Expand Down
10 changes: 0 additions & 10 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,17 +121,7 @@ const sidebarUserGuide = [
collapsable: false,
initialOpenGroupIndex: -1,
children: [
{
title: 'LNbank',
path: '/LNbank/',
children: [
['/LNbank/LNDhub', 'LNDhub Compatibility'],
['/LNbank/Troubleshooting', 'Troubleshooting']
]
},
['/LNDhubAPI/', 'LNDhub API'],
['/Nostr/', 'Nostr'],
['/PodServer/', 'PodServer'],
['/TicketTailor/', 'TicketTailor'],
['/Trocador/', 'Trocador'],
['/Wabisabi/', 'Wabisabi Coinjoin']
Expand Down
3 changes: 0 additions & 3 deletions docs/.vuepress/preprocessMarkdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ const EXTERNAL_DOCS = {
Vault: 'https://github.com/btcpayserver/BTCPayServer.Vault',
Transmuter: 'https://github.com/btcpayserver/btcTransmuter',
Zapier: 'https://github.com/btcpayserver/zapier',
LNbank: 'https://github.com/dennisreimann/btcpayserver-plugin-lnbank',
LNDhubAPI: 'https://github.com/dennisreimann/btcpayserver-plugin-lndhub-api',
Nostr: 'https://github.com/Kukks/BTCPayServerPlugins/tree/master/Plugins/BTCPayServer.Plugins.NIP05',
PodServer: 'https://github.com/dennisreimann/btcpayserver-plugin-podserver',
TicketTailor: 'https://github.com/Kukks/BTCPayServerPlugins/tree/master/Plugins/BTCPayServer.Plugins.TicketTailor',
Trocador: 'https://github.com/saltrafael/trocador-plugin',
Wabisabi: 'https://github.com/Kukks/BTCPayServerPlugins/tree/master/Plugins/BTCPayServer.Plugins.Wabisabi',
Expand Down
2 changes: 0 additions & 2 deletions docs/Development/Plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,4 @@ Once you click the `Release` button on the build page, the package won't be in p
For more information check out these repositories with existing plugins:

- [kukks' plugins](https://github.com/Kukks/BTCPayServerPlugins)
- [LNbank](https://github.com/dennisreimann/btcpayserver-plugin-lnbank)
- [PodServer](https://github.com/dennisreimann/btcpayserver-plugin-podserver)
- [Trocador.app](https://github.com/saltrafael/trocador-plugin)
62 changes: 0 additions & 62 deletions setup-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ DOCKER_DIR="$BASE_DIR/deps/docker"
VAULT_DIR="$BASE_DIR/deps/vault"
TRANSMUTER_DIR="$BASE_DIR/deps/transmuter"
ZAPIER_DIR="$BASE_DIR/deps/zapier"
LNBANK_DIR="$BASE_DIR/deps/lnbank"
PODSERVER_DIR="$BASE_DIR/deps/podserver"
TROCADOR_DIR="$BASE_DIR/deps/trocador"
LNDHUBAPI_DIR="$BASE_DIR/deps/lndhub-api"
KUKKS_DIR="$BASE_DIR/deps/kukks"
SMARTSTORE_DIR="$BASE_DIR/deps/smartstore"

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

# LNbank

echo "Setup dependency: LNbank"

rm -rf "$LNBANK_DIR"
rm -rf "$DOCS_DIR/LNbank"
mkdir -p "$DOCS_DIR/LNbank"

if [ ! -d "$LNBANK_DIR" ]; then
git clone --depth 1 https://github.com/dennisreimann/btcpayserver-plugin-lnbank.git "$LNBANK_DIR"
fi

cd "$LNBANK_DIR"
cp -r README.md docs/* "$DOCS_DIR/LNbank"
sed -ie 's$(./docs/$(./$g' "$DOCS_DIR/LNbank/README.md"
for file in "$DOCS_DIR"/LNbank/*.md; do
update_external "$file" https://github.com/dennisreimann/btcpayserver-plugin-lnbank "$DOCS_DIR"/LNbank/
done

cp -r BTCPayServer.Plugins.LNbank/Resources/swagger/* "$BASE_DIR/swagger/plugins"

# PodServer

echo "Setup dependency: PodServer"

rm -rf "$PODSERVER_DIR"
rm -rf "$DOCS_DIR/PodServer"
mkdir -p "$DOCS_DIR/PodServer"

if [ ! -d "$PODSERVER_DIR" ]; then
git clone --depth 1 https://github.com/dennisreimann/btcpayserver-plugin-podserver.git "$PODSERVER_DIR"
fi

cd "$PODSERVER_DIR"
cp -r README.md docs/* "$DOCS_DIR/PodServer"
sed -ie 's$(./docs/$(./$g' "$DOCS_DIR/PodServer/README.md"
for file in "$DOCS_DIR"/PodServer/*.md; do
update_external "$file" https://github.com/dennisreimann/btcpayserver-plugin-podserver "$DOCS_DIR"/PodServer/
done

# LNDhub API

echo "Setup dependency: LNDhub API"

rm -rf "$LNDHUBAPI_DIR"
rm -rf "$DOCS_DIR/LNDhubAPI"
mkdir -p "$DOCS_DIR/LNDhubAPI"

if [ ! -d "$LNDHUBAPI_DIR" ]; then
git clone --depth 1 https://github.com/dennisreimann/btcpayserver-plugin-lndhub-api.git "$LNDHUBAPI_DIR"
fi

cd "$LNDHUBAPI_DIR"
cp -r README.md docs/* "$DOCS_DIR/LNDhubAPI"
sed -ie 's$(./docs/$(./$g' "$DOCS_DIR/LNDhubAPI/README.md"
for file in "$DOCS_DIR"/LNDhubAPI/*.md; do
update_external "$file" https://github.com/dennisreimann/btcpayserver-plugin-lndhub-api "$DOCS_DIR"/LNDhubAPI/
done

# Trocador

echo "Setup dependency: Trocador"
Expand Down
1 change: 1 addition & 0 deletions swagger/plugins/shim/shim.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}