Welcome to Percona Backup for MongoDB documentation!
We're glad that you would like to become a Percona community member and participate in keeping open source open.
Percona Backup for MongoDB (PBM) is a distributed, low-impact solution for achieving consistent backups of MongoDB sharded clusters and replica sets.
This repository contains the source file for PBM documentation and this document explains how you can contribute to it.
If you'd like to submit a code patch, follow the Contributing guide in PBM code repository.
By contributing, you agree to the Percona Community code of conduct.
You can contribute to documentation in the following ways:
1. Request a doc change through a Jira issue
If you've spotted a doc issue (a typo, broken links, inaccurate instructions, etc.) but don't have time nor desire to fix it yourself - let us know about it.
- Click the Jira issue tracker in your browser.
- Sign in (create a Jira account if you don't have one).
- (Optional but recommended) Search if the issue you want to report is already reported.
- Click the Create issue shortcut to create an issue
- Select the Percona Backup for MongoDB in the Project dropdown and the issue type in the Issue Type dropdown. Click Next.
- Describe the issue you have detected in the Summary, Description, Steps To Reproduce, Affects Version fields.
- Click Create.
2. Leave your feedback
We'd like to hear from you. Click Rate this page and leave your feedback. We will appreciate you leaving your email so that we can reach out to you with clarifications or updates, if needed.
Percona Backup for MongoDB documentation is written in Markdown language, so you can edit it online via GitHub. If you wish to have more control over the doc process, jump to how to edit documentation locally.
Before you start, learn what git, MkDocs and Docker are and what Markdown is and how to write it. For your convenience, there's also a cheat sheet to help you with the syntax.
The doc files are in the docs directory.
-
Click the Edit this page link on the sidebar. The source
.mdfile of the page opens in GitHub editor in your browser. If you haven't worked with the repository before, GitHub creates a fork of it for you. -
Edit the page. You can check your changes on the Preview tab.
-
Commit your changes.
- In the Commit changes section, describe your changes.
- Select the Create a new branch for this commit and start a pull request option
- Click Propose changes.
-
GitHub creates a branch and a commit for your changes. It loads a new page on which you can open a pull request to Percona. The page shows the base branch - the one you offer your changes for, your commit message and a diff - a visual representation of your changes against the original page. This allows you to make a last-minute review. When you are ready, click the Create pull request button.
-
Someone from our team reviews the pull request and if everything is correct, merges it into the documentation. Then it gets published on the site.
This option is for users who prefer to work from their computer and / or have the full control over the documentation process.
The steps are the following:
- Fork this repository
- Clone the repository on your machine:
git clone git@github.com:<your_name>/pbm-docs.git- Change the directory to
pbm-docsand add the remote upstream repository:
git remote add upstream git@github.com:percona/pbm-docs.git- Pull the latest changes from upstream
git fetch upstream
git merge upstream/mainAlways pull the latest changes before you start editing the documentation.
- Create a separate branch for your changes. If there is a Jira ticket related to your contribution, name your branch in the following way:
<Jira issue number>-<short description>. For example
git checkout -b PBM-123-My-fix-
Make changes. See the Repository structure for details what files this repo contains and their purpose.
-
Check your changes. Some editors (Sublime Text, VSCode and others) have the Markdown preview which you can use to check how the page is rendered. Alternatively, you can build the documentation to know exactly how the documentation looks on the web site.
-
Commit your changes. The commit message guidelines will help you with writing great commit messages
-
Open a pull request to Percona
To verify how your changes look, generate the static site with the documentation. This process is called building.
-
Install Python.
-
Install MkDocs and required extensions:
pip install -r requirements.txt
-
To build the site, run:
mkdocs build
-
Open
site/index.html
To view your changes as you make them, run the following command:
mkdocs servePaste the http://127.0.0.1:8000 in your browser and you will see the documentation. The page reloads automatically as you make changes.
To build the PDF documentation, open the site/print_page.html in your browser. Save it as PDF. Depending on the browser, you may need to select the Export to PDF, Print - Save as PDF or just Save and select PDF as the output format.
Once your pull request is merged, you are an official Percona Community Contributor. Welcome to the community!
The repository includes the following directories and files:
mkdocs-base.yml- the base configuration file. It includes general settings and documentation structure.mkdocs.yml- configuration file. Contains the settings for building the docs with the Material theme.docs:*.md- Source markdown files._images- Images, logos and favicons_templates- The PDF cover page templatecss- Stylesjs- Javascript filesfonts- Fonts used in the docs
_resource- The set of Material theme templates with our customizations.icons- Custom icons used in the documentationoverrides:partials- The layout templates for various parts of the documentation such as header, copyright and others.main.html- The layout template for hosting the documentation on Percona website
_resourcepdf- The set of Material theme templates with our customizations for PDF buildssite- This is where the output HTML files are put after the build