Protect your data against global mass surveillance programs.
Go to file
Jonah Aragon 4ae2e9453c
Add changelog, deploy on tagged releases (#987)
2022-04-11 22:10:10 -05:00
.github Add changelog, deploy on tagged releases (#987) 2022-04-11 22:10:10 -05:00
.well-known Clean up the cruft 2021-01-15 23:46:23 -06:00
docs Move articles to blog.privacyguides.org (#985) 2022-04-11 22:01:50 -05:00
mkdocs-material@f02ab2a15e Netlify PR Previews (#915) 2022-04-05 12:29:24 -05:00
theme Move articles to blog.privacyguides.org (#985) 2022-04-11 22:01:50 -05:00
.gitattributes Initial commit 2020-04-28 16:09:22 -05:00
.gitignore Transition to mkdocs (#829) 2022-04-02 06:59:03 +10:30
.gitmodules Netlify PR Previews (#915) 2022-04-05 12:29:24 -05:00
.markdownlint.yml Page formatting consistency (#913) 2022-04-05 10:49:24 -05:00
CHANGELOG.md Add changelog, deploy on tagged releases (#987) 2022-04-11 22:10:10 -05:00
LICENSE Proper Content Licensing 2021-09-16 09:57:21 -05:00
Pipfile Correct Privacy Guides logo icon 2022-04-11 17:03:42 -05:00
Pipfile.lock Correct Privacy Guides logo icon 2022-04-11 17:03:42 -05:00
README.md Add changelog, deploy on tagged releases (#987) 2022-04-11 22:10:10 -05:00
mkdocs.production.yml Move articles to blog.privacyguides.org (#985) 2022-04-11 22:01:50 -05:00
mkdocs.yml Move articles to blog.privacyguides.org (#985) 2022-04-11 22:01:50 -05:00

README.md

Privacy Guides Privacy Guides

Your central privacy and security resource to protect yourself online.

About

Privacy Guides is a socially motivated website that provides information for protecting your data security and privacy. We are a non-profit collective operated entirely by volunteer team members and contributors.

Our current list of team members can be found here. Additionally, many people have made contributions to the project, and you can too!

Contributing

Developing

  1. Clone this repository: git clone https://github.com/privacyguides/privacyguides.org
  2. Install Python 3.6+
  3. Install mkdocs-material: pip install mkdocs-material
  4. Serve the site locally: mkdocs serve
    • The site will be available at http://localhost:8000/.

Your local site will appear slightly different, because the production version of the website uses a private/custom build of mkdocs-material with additional features.

Team members with access to mkdocs-material-insiders should instead:

  1. Clone this repository and submodules: git clone --recurse-submodules https://github.com/privacyguides/privacyguides.org
  2. Install Python 3.6+
  3. Install pipenv: pip install pipenv
  4. Start a pipenv shell: pipenv shell
  5. Install dependencies: pipenv install --dev
  6. Serve the site locally: mkdocs serve --config-file mkdocs.production.yml
    • The site will be available at http://localhost:8000
    • You can build the site locally with mkdocs build --config-file mkdocs.production.yml
    • This version of the site should be identical to the live, production version