Skip to content

Commit beadee7

Browse files
authored
Merge pull request #1498 from TChukwuleta/ghostDocs
include Ghost documents
2 parents 656aec3 + 6e084f3 commit beadee7

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

docs/.vuepress/config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ const sidebarUserGuide = [
123123
['/Shopify', 'Shopify'],
124124
['/ShopifyV2', 'Shopify V2'],
125125
['/Shopware', 'Shopware'],
126+
['/Ghost/', 'Ghost'],
126127
['/Smartstore/', 'Smartstore'],
127128
['/VirtueMart', 'VirtueMart'],
128129
['/Wix/', 'Wix'],
@@ -147,7 +148,7 @@ const sidebarUserGuide = [
147148
['/DynamicReports/', 'Dynamic Reports'],
148149
['/LNDhubAPI/', 'LNDhub API'],
149150
['/Nostr/', 'Nostr'],
150-
['/Payroll/', 'Payroll'],
151+
['/VendorPay/', 'Vendor Pay'],
151152
['/PodServer/', 'PodServer'],
152153
['/SideShift/', 'SideShift'],
153154
['/TicketTailor/', 'TicketTailor'],

setup-deps.sh

+15-5
Original file line numberDiff line numberDiff line change
@@ -453,8 +453,8 @@ done
453453

454454
echo "Setup dependency: Rockstar' plugins"
455455

456-
rm -rf "$DOCS_DIR/Payroll"
457-
mkdir -p "$DOCS_DIR/Payroll"
456+
rm -rf "$DOCS_DIR/VendorPay"
457+
mkdir -p "$DOCS_DIR/VendorPay"
458458

459459
if [ ! -d "$ROCKSTAR_DIR" ]; then
460460
git clone --depth 1 https://github.com/rockstardev/BTCPayServerPlugins.RockstarDev.git "$ROCKSTAR_DIR"
@@ -464,9 +464,9 @@ fi
464464

465465
cd "$ROCKSTAR_DIR/Plugins/BTCPayServer.RockstarDev.Plugins.Payroll"
466466

467-
cp -r README.md "$DOCS_DIR/Payroll"
468-
for file in "$DOCS_DIR"/Payroll/*.md; do
469-
update_external "$file" https://github.com/rockstardev/BTCPayServerPlugins.RockstarDev/tree/master/Plugins/BTCPayServer.RockstarDev.Plugins.Payroll https://github.com/rockstardev/BTCPayServerPlugins.RockstarDev/edit/master/Plugins/BTCPayServer.RockstarDev.Plugins.Payroll "$DOCS_DIR"/Payroll/
467+
cp -r README.md "$DOCS_DIR/VendorPay"
468+
for file in "$DOCS_DIR"/VendorPay/*.md; do
469+
update_external "$file" https://github.com/rockstardev/BTCPayServerPlugins.RockstarDev/tree/master/Plugins/BTCPayServer.RockstarDev.Plugins.Payroll https://github.com/rockstardev/BTCPayServerPlugins.RockstarDev/edit/master/Plugins/BTCPayServer.RockstarDev.Plugins.Payroll "$DOCS_DIR"/VendorPay/
470470
done
471471

472472
# Tobe' plugins
@@ -476,6 +476,9 @@ echo "Setup dependency: Tobses' plugins"
476476
rm -rf "$DOCS_DIR/BigCommerce"
477477
mkdir -p "$DOCS_DIR/BigCommerce"
478478

479+
rm -rf "$DOCS_DIR/Ghost"
480+
mkdir -p "$DOCS_DIR/Ghost"
481+
479482
if [ ! -d "$TOBSES_DIR" ]; then
480483
git clone --depth 1 https://github.com/TChukwuleta/BTCPayServerPlugins.git "$TOBSES_DIR"
481484
else
@@ -489,6 +492,13 @@ for file in "$DOCS_DIR"/BigCommerce/*.md; do
489492
update_external "$file" https://github.com/TChukwuleta/BTCPayServerPlugins/tree/main/Plugins/BTCPayServer.Plugins.BigCommercePlugin https://github.com/TChukwuleta/BTCPayServerPlugins/edit/main/Plugins/BTCPayServer.Plugins.BigCommercePlugin "$DOCS_DIR"/BigCommerce/
490493
done
491494

495+
cd "$TOBSES_DIR/Plugins/BTCPayServer.Plugins.GhostPlugin"
496+
497+
cp -r README.md img "$DOCS_DIR/Ghost"
498+
for file in "$DOCS_DIR"/Ghost/*.md; do
499+
update_external "$file" https://github.com/TChukwuleta/BTCPayServerPlugins/tree/main/Plugins/BTCPayServer.Plugins.GhostPlugin https://github.com/TChukwuleta/BTCPayServerPlugins/edit/main/Plugins/BTCPayServer.Plugins.GhostPlugin "$DOCS_DIR"/Ghost/
500+
done
501+
492502
# Nisaba plugins
493503

494504
echo "Setup dependency: Nisaba plugins"

0 commit comments

Comments
 (0)