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

include Ghost documents #1498

Merged
merged 1 commit into from
Mar 27, 2025
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
3 changes: 2 additions & 1 deletion docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ const sidebarUserGuide = [
['/Shopify', 'Shopify'],
['/ShopifyV2', 'Shopify V2'],
['/Shopware', 'Shopware'],
['/Ghost/', 'Ghost'],
['/Smartstore/', 'Smartstore'],
['/VirtueMart', 'VirtueMart'],
['/Wix/', 'Wix'],
Expand All @@ -147,7 +148,7 @@ const sidebarUserGuide = [
['/DynamicReports/', 'Dynamic Reports'],
['/LNDhubAPI/', 'LNDhub API'],
['/Nostr/', 'Nostr'],
['/Payroll/', 'Payroll'],
['/VendorPay/', 'Vendor Pay'],
['/PodServer/', 'PodServer'],
['/SideShift/', 'SideShift'],
['/TicketTailor/', 'TicketTailor'],
Expand Down
20 changes: 15 additions & 5 deletions setup-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -453,8 +453,8 @@ done

echo "Setup dependency: Rockstar' plugins"

rm -rf "$DOCS_DIR/Payroll"
mkdir -p "$DOCS_DIR/Payroll"
rm -rf "$DOCS_DIR/VendorPay"
mkdir -p "$DOCS_DIR/VendorPay"

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

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

cp -r README.md "$DOCS_DIR/Payroll"
for file in "$DOCS_DIR"/Payroll/*.md; do
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/
cp -r README.md "$DOCS_DIR/VendorPay"
for file in "$DOCS_DIR"/VendorPay/*.md; do
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/
done

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

rm -rf "$DOCS_DIR/Ghost"
mkdir -p "$DOCS_DIR/Ghost"

if [ ! -d "$TOBSES_DIR" ]; then
git clone --depth 1 https://github.com/TChukwuleta/BTCPayServerPlugins.git "$TOBSES_DIR"
else
Expand All @@ -489,6 +492,13 @@ for file in "$DOCS_DIR"/BigCommerce/*.md; do
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/
done

cd "$TOBSES_DIR/Plugins/BTCPayServer.Plugins.GhostPlugin"

cp -r README.md img "$DOCS_DIR/Ghost"
for file in "$DOCS_DIR"/Ghost/*.md; do
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/
done

# Nisaba plugins

echo "Setup dependency: Nisaba plugins"
Expand Down