mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-10-01 01:35:57 -04:00
5.1 KiB
5.1 KiB
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
- 💬 Start a discussion or suggest an idea
- 💖 Sponsor the project
- 🈴 Help translate the site [Matrix chat]
- 📝 Edit the site, everything's accessible in this repo
- Browse our open issues to see what needs to be updated
- View some contribution tips on our contributor's wiki
Developing
- Clone this repository and submodules:
git clone --recurse-submodules https://github.com/privacyguides/privacyguides.org
- Install Python 3.6+
- Install pipenv:
pip install pipenv
- Start a pipenv shell:
pipenv shell
- Install dependencies:
pipenv install --dev
- 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
- The site will be available at
Releasing
- Create a new tag:
git tag -s v2.X.X -m 'Some message'
- View existing tags
- Tag numbering: Increment the MINOR (2nd) number when making significant changes (adding/deleting pages, etc.), increment the PATCH (3rd) number when making minor changes (typos, bug fixes). Probably leave the MAJOR number at 2 until a massive redesign (v1 -> v2 was the Jekyll to MkDocs transition).
- Push the tag to GitHub:
git push --tags
- Create a new release selecting the new tag
- Title the release the same as the tag version number without the
v
, i.e.2.X.X
- For more significant releases, add a short title, for example 2.3.0 - Localization Support or 2.2.0 - Removing Social Networks
- GitHub should let you auto-generate release notes based on PR titles
- Mark more significant changes in bold, see 2.3.0 for example
- Title the release the same as the tag version number without the
- Publish release, it will be deployed to the live site automatically
- When publishing more significant releases (generally any with a MINOR version increment) check the "Create a discussion for this release" box to post an announcement