Protect your data against global mass surveillance programs.
Go to file
Sloofy d25d460348
Fix typo in Real-Time Communication (#447)
Signed-off-by: Daniel Gray <dng@disroot.org>
2021-12-08 19:24:32 +10:30
_data Remove DNS providers without anycast (#443) 2021-12-06 15:19:31 +10:30
_includes Fix typo in Real-Time Communication (#447) 2021-12-08 19:24:32 +10:30
_layouts Fix navbar collapse toggle 2021-09-15 10:21:57 -05:00
_sass Update secondary color 2021-09-19 13:31:16 -05:00
.github Update CODEOWNERS (#419) 2021-12-02 15:36:19 +10:30
.well-known Clean up the cruft 2021-01-15 23:46:23 -06:00
assets Firefox Privacy: 2021 edition (#383) 2021-12-02 01:55:53 +10:30
collections Fix broken desktop anchor (#436) 2021-12-03 18:30:12 +10:30
legacy_pages Fix typo on VPN page (#442) 2021-12-06 15:15:43 +10:30
_config.yml SEO Fixes 2021-09-13 08:56:27 -05:00
.gitattributes Initial commit 2020-04-28 16:09:22 -05:00
.gitignore Fix broken links (#417) 2021-12-01 09:46:02 -06:00
.npmrc Use npm for bootstrap and fontawesome-pro assets 2021-01-15 01:36:48 -06:00
.ruby-version Update to Ruby 3.0.0 2021-01-15 14:42:05 -06:00
404.html Broken link correction 2021-09-13 12:53:43 -05:00
blog.html Format recommendation pages 2020-05-12 15:13:53 -05:00
Gemfile SEO Fixes 2021-09-13 08:56:27 -05:00
Gemfile.lock Bump jekyll from 4.2.0 to 4.2.1 (#143) 2021-11-10 14:12:35 +00:00
index.html Remove Homepage Banner Notice (#418) 2021-12-02 16:05:06 +10:30
LICENSE Proper Content Licensing 2021-09-16 09:57:21 -05:00
notices.md Proper Content Licensing 2021-09-16 09:57:21 -05:00
package-lock.json Bump @fortawesome/fontawesome-pro from 6.0.0-beta2 to 6.0.0-beta3 (#365) 2021-11-23 20:32:06 +10:30
package.json Bump @fortawesome/fontawesome-pro from 6.0.0-beta2 to 6.0.0-beta3 (#365) 2021-11-23 20:32:06 +10:30
privacy-policy.md Remove some outdated resources 2021-05-01 15:00:51 -05:00
README.md Update README (#105) 2021-09-19 19:18:59 +00:00

Privacy Guides

Your central privacy and security resource to protect yourself online.

Developing

  1. Install the version of Ruby currently specified by .ruby-version
    • With rbenv (recommended!): rbenv install
    • With RVM: rvm install "ruby-$(cat .ruby-version)"
    • Manually
  2. Install node.js and npm
  3. Install Bundler v2.2.5:
    • gem install bundler:2.2.5
  4. Install the required dependencies:
    • bundle install
    • npm install
  5. Build the website (the output can be found in the _site directory):
    • npm run build
  6. Serve the website locally with live reloading:
    • npm run serve