Skip to content

Commit

Permalink
Add PodServer docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisreimann committed Oct 31, 2024
1 parent 86a9be8 commit 1cde0ef
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
/docs/Nopcommerce
/docs/Nostr
/docs/Payroll
/docs/PodServer
/docs/SideShift
/docs/Smartstore
/docs/TicketTailor
Expand Down
1 change: 1 addition & 0 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ const sidebarUserGuide = [
children: [
['/LNDhubAPI/', 'LNDhub API'],
['/Nostr/', 'Nostr'],
['/PodServer/', 'PodServer'],
['/TicketTailor/', 'TicketTailor'],
['/Trocador/', 'Trocador'],
['/SideShift/', 'SideShift'],
Expand Down
1 change: 1 addition & 0 deletions docs/.vuepress/preprocessMarkdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const EXTERNAL_DOCS = {
Zapier: 'https://github.com/btcpayserver/zapier',
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
1 change: 1 addition & 0 deletions docs/Development/Plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,4 +351,5 @@ For more information check out these repositories with existing plugins:
- [kukks' plugins](https://github.com/Kukks/BTCPayServerPlugins)
- [rockstardev' plugins](https://github.com/rockstardev/BTCPayServerPlugins.RockstarDev)
- [LNDhub API](https://github.com/dennisreimann/btcpayserver-plugin-lndhub-api)
- [PodServer](https://github.com/dennisreimann/btcpayserver-plugin-podserver)
- [Trocador.app](https://github.com/saltrafael/trocador-plugin)
20 changes: 20 additions & 0 deletions setup-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +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"
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"
Expand Down Expand Up @@ -193,6 +194,25 @@ for file in "$DOCS_DIR"/Zapier/*.md; do
update_external "$file" https://github.com/btcpayserver/zapier "$DOCS_DIR"/Zapier/
done

# 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"
Expand Down

0 comments on commit 1cde0ef

Please sign in to comment.