Added first draft of docs

This commit is contained in:
Sun Knudsen 2020-09-10 10:14:21 -04:00
parent c78243d0ab
commit e15dce6b01
No known key found for this signature in database
GPG Key ID: 1FA767862BBD1305
2 changed files with 76 additions and 1 deletions

View File

@ -2,4 +2,4 @@
Most [privacy guides](https://www.youtube.com/sunknudsen) episodes on YouTube dont need reference material, but when they do, it lands here.
Wish to contribute? Please submit an [issue](https://github.com/sunknudsen/privacy-guides/issues) or a [pull request](https://github.com/sunknudsen/privacy-guides/pulls).
Wish to contribute or need help? Read the [docs](./docs).

75
docs/README.md Normal file
View File

@ -0,0 +1,75 @@
<!--
Title: Privacy guides docs
Description: Learn how to contribute, get help, peer review and sign the reference material.
Author: Sun Knudsen <https://github.com/sunknudsen>
Publication date: 1970-01-01T00:00:00.000Z
-->
# Privacy guides docs
## How to contribute
First, thanks for considering contributing. 🙌
**Found a bug?** Please submit [issue](https://github.com/sunknudsen/privacy-guides/issues).
**Found a security vulnerability?** Please report vulnerability using the PGP public key and email found on [sunknudsen.com](https://sunknudsen.com/).
**Have a fix or improvement?** Please submit [pull request](https://github.com/sunknudsen/privacy-guides/pulls) ([signed](#how-to-sign-pull-requests) pull requests are favored).
**Fellow privacy and security researcher?** Please [peer review and sign](#how-to-peer-review-and-sign-a-guide) a guide.
**Value the project?** Consider starring the [repo](https://github.com/sunknudsen/privacy-guides).
## How to get help
We have you back, you are not alone!
Please use comments on [YouTube](https://www.youtube.com/sunknudsen) or [PeerTube](https://peertube.sunknudsen.com/accounts/sunknudsen/video-channels) when possible as others may be able to help (two brains are better than one).
## How to peer review and sign a guide
> Heads up: in order to establish a web of trust, peer reviewers must have public-facing track records and will be background checked.
### Step 1: clone [repo](https://github.com/sunknudsen/privacy-guides)
### Step 2: review guide and suggest fixes or improvements (if need be)
### Step 3: append yourself to `Reviewers` (comma-separated).
Example:
```markdown
<!--
Title: How to append yourself to reviewers
Description: Learn how to append yourself to reviewers.
Author: Sun Knudsen <https://github.com/sunknudsen>
Contributors: Sun Knudsen <https://github.com/sunknudsen>
Reviewers: Alice <https://github.com/alice>, Bob <https://github.com/bob>
Publication date: 2020-09-09T17:25:25.799Z
-->
```
### Step 4: submit [signed](#how-to-sign-pull-requests) pull request
👍
## How to sign pull requests
### Step 1: add PGP public key to GitHub account
Go to https://github.com/settings/keys, click "New GPG key", paste your PGP public key and click "Add GPG key".
### Step 2: enable Git [signing](https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work)
Replace `0x1FA767862BBD1305` with your PGP public signing subkey ID.
```shell
git config --global commit.gpgsign true
git config --global gpg.program $(which gpg)
git config --global user.signingkey 0x1FA767862BBD1305
```
### Step 3: submit pull request
👍