All Projects → btcpayserver → Btcpayserver Doc

btcpayserver / Btcpayserver Doc

Licence: mit
BTCPay Server Official Documentation

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Btcpayserver Doc

Learnosm
LearnOSM.org content, Jekyll layouts & issue tracking. This repository is dedicated to helping people learn how to map in OpenStreetMap (OSM) and use many of the software and tools in the OSM community.
Stars: ✭ 200 (-11.11%)
Mutual labels:  documentation
Rubyref
Ruby Programming Language Reference
Stars: ✭ 212 (-5.78%)
Mutual labels:  documentation
Docs
Repository of Twilio SendGrid's product documentation.
Stars: ✭ 221 (-1.78%)
Mutual labels:  documentation
Postgrest Docs
Documentation for
Stars: ✭ 202 (-10.22%)
Mutual labels:  documentation
Contrast Swatch
🅰️ Image microservice for color contrast information
Stars: ✭ 210 (-6.67%)
Mutual labels:  documentation
Awesome React Native Web
💙 React Native Web patterns, techniques, tips, and tricks ✨
Stars: ✭ 215 (-4.44%)
Mutual labels:  documentation
Creator Docs
Manual docs content for Cocos Creator
Stars: ✭ 201 (-10.67%)
Mutual labels:  documentation
Spectaql
Autogenerate static GraphQL API documentation
Stars: ✭ 198 (-12%)
Mutual labels:  documentation
Nodejs Api Doc
📓Node.js API doc in Chinese
Stars: ✭ 210 (-6.67%)
Mutual labels:  documentation
Mindforger Repository
MindForger documentation repository.
Stars: ✭ 221 (-1.78%)
Mutual labels:  documentation
Grav Learn
Grav Learn (exhaustive grav documentation)
Stars: ✭ 204 (-9.33%)
Mutual labels:  documentation
React Navigation.github.io
Home of the documentation and other miscellanea
Stars: ✭ 207 (-8%)
Mutual labels:  documentation
Helloworld Msa
Main repository with documentation and support files
Stars: ✭ 218 (-3.11%)
Mutual labels:  documentation
Registry
npm registry documentation
Stars: ✭ 202 (-10.22%)
Mutual labels:  documentation
Hexo Theme Doc
A documentation theme for the Hexo blog framework
Stars: ✭ 222 (-1.33%)
Mutual labels:  documentation
Mynotes
笔记、Laravel、PHP、面试题、MySQL、HTML、CSS、Java...
Stars: ✭ 201 (-10.67%)
Mutual labels:  documentation
Marlindocumentation
Marlin Firmware Documentation Project
Stars: ✭ 215 (-4.44%)
Mutual labels:  documentation
Openapi Codegen
OpenAPI 3.0 CodeGen plus Node.js minus the Java and emojis
Stars: ✭ 224 (-0.44%)
Mutual labels:  documentation
Emu Docs
Emulator documentation archive
Stars: ✭ 222 (-1.33%)
Mutual labels:  documentation
Swiftdoc.org
Auto-generated documentation for Swift. Command-click no more.
Stars: ✭ 219 (-2.67%)
Mutual labels:  documentation

BTCPay Server Documentation

Build Status

Introduction

BTCPay Server is an open-source, self-hosted payment processor for Bitcoin and other cryptocurrencies.

If you have trouble using BTCPay Server, consider joining the communities listed on the official website to get help from community members.

Only file a Github issue for technical issues you can't resolve through other channels or feature requests you've validated with other members of community.

Please check out our official website, our complete documentation and FAQ for more details.

Contributing

Pull requests are welcome and appreciated. To contribute to BTCPay Server, first check the contributing guidelines.

If you're beginner, take a look at the step by step guide on how to contribute to BTCPay Server documentation below.

Contributing to Documentation

Build the Documentation Locally

In order to build the website locally, you'll need Node.js >= 12.16 (or basically the latest LTS version). A prerequisite for the setup-deps.sh script is jq.

The setup is straight forward:

# Install dependencies
npm install

# Link external doc repos
./setup-deps.sh

# Serve locally (by default on port 8080)
npm start

Text Highlights

There are three types of text highlights that can be used to display different colored boxes.

A green box displaying a friendly tip:

:::tip
foo
:::

A yellow box with a cautious warning:

:::warning
foo
:::

A red box with a clear danger, you can also add a title foo to any container:

:::danger foo
bar
:::

SEO improvements

We are using the Vuepress SEO plugin to add relevant meta tags to the site and individual pages.

To improve the meta attributes of a specific page, you can add them as YAML frontmatter like this: (see the WooCommerce page for an example)

---
description: How to integrate BTCPay Server into your WooCommerce store.
tags:
- WooCommerce
- WordPress
- Plugin
- eCommerce
---
# WooCommerce integration

This document explains how to **integrate BTCPay Server into your WooCommerce store**.

Embedding YouTube videos

To add a YouTube video with a preview, you can so so by linking to it like this:

[![IMAGE ALT TEXT HERE](https://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/mqdefault.jpg)](https://www.youtube.com/watch?v=YOUTUBE_VIDEO_ID_HERE)

Note that the link item need to be a preview image (either from YouTube or a custom one) to result in an embedded video.

External documentation repos

The build documentation site combines a bunch of docs living in different repositories.

Before the build we check out the other repositories, copy their docs into the right places and link them just as the docs in this repo.

The process for that is defined in the setup-deps.sh script.

External repos can trigger the docs build whenever they change. You can use GitHub's repository_dispatch feature for this, which is exposed via the API:

curl -X POST https://api.github.com/repos/btcpayserver/btcpayserver-doc/dispatches \
  -u "${{ secrets.GH_PAT }}" \
  -H "Accept: application/vnd.github.everest-preview+json" \
  -H "Content-Type: application/json" \
  --data '{"event_type": "build_docs"}'

The GH_PAT needs to be a personal access token.

Check for broken links

The GitHub Actions pipeline checks for broken links after deploying the production site. You can also run the link check locally using npm run linkcheck:local. The dev server needs to be running alongside for this to work.

Supporters

The BTCPay Server Project is proudly supported by these entities through the BTCPay Server Foundation.

Kraken
Kraken
Square Crypto
Square Crypto
BTSE
BTSE
OKCoin
OKCoin
DG Lab
DG Lab
ACINQ
ACINQ
LunaNode
LunaNode
Wallet of Satoshi
Wallet of Satoshi
Nomics
Nomics

If you'd like to support the project, please visit the donation page.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].