spiff-arena/docs/documentation/documentation.md

161 lines
8.0 KiB
Markdown
Raw Normal View History

2023-05-18 20:11:02 +00:00
# How to Contribute to the Documentation
2023-05-18 20:35:08 +00:00
This documentation is currently hosted live at [Spiff-Arena's ReadTheDocs](https://spiff-arena.readthedocs.io/en/latest/)
2023-05-18 20:11:02 +00:00
Please set aside a couple of hours to work through this, as getting this setup correctly once is 10,000 times better than having problems every day for the rest of your life.
## Our Methodology
2023-05-19 14:18:14 +00:00
The methodology we are following is known as ["Docs as Code"](https://www.writethedocs.org/guide/docs-as-code/).
2023-05-18 20:11:02 +00:00
2023-05-19 14:18:14 +00:00
This means using the same tools and processes that software developers use for writing code to write the documentation for code.
In following this methodology, you will have to pick up some tools you haven't had to use before (Git, Sphinx).
2023-05-19 14:54:01 +00:00
Why would a technical writer need to learn these software engineering tools?
2023-05-18 20:35:08 +00:00
I'll never make the case as well as an article by [Tom Johnson](https://idratherbewriting.com/trends/trends-to-follow-or-forget-docs-as-code.html).
2023-05-18 20:11:02 +00:00
You might notice, when looking at the markdown files, that every sentence starts on a new line.
Like this one.
Unless there is a blank line between sentences, Markdown will still render this as a paragraph.
2023-05-19 14:18:14 +00:00
This is called [Ventilated Prose](https://vanemden.wordpress.com/2009/01/01/ventilated-prose/) and can be very helpful when working in Markdown.
2023-05-18 20:11:02 +00:00
## Our Tools
2023-05-19 14:18:14 +00:00
[Markdown](https://www.markdownguide.org/getting-started/) is a "markup language that you can use to add formatting elements to plain text documents."
You won't be writing the documentation in a word processor, but in simple plain text, and some special syntax that will consistently and professionally format that text.
2023-05-18 20:11:02 +00:00
2023-05-19 14:18:14 +00:00
The basic Markdown syntax is very simple.
Here are some [quick examples](https://commonmark.org/help/). And here is a great [10 minute tutorial](https://commonmark.org/help/tutorial/).
2023-05-18 20:11:02 +00:00
This will cover a lot of the basics, like bolding text, italics, paragraphs, lists and other common formatting techniques.
![Markdown screenshot](./images/markdown.png "Markdown example")
### MyST
2023-05-19 14:18:14 +00:00
Markdown doesn't support some really useful formatting options.
2023-05-18 20:35:08 +00:00
You can't add footnotes, or create an "aside" comment or build a table.
2023-05-19 14:18:14 +00:00
Because of this, there are many extensions, and these are typically referred to as Markdown "Flavors."
2023-05-18 20:35:08 +00:00
The flavor we are using is MyST.
2023-05-19 14:18:14 +00:00
There is [excellent documentation on MyST](https://myst-parser.readthedocs.io/en/v0.13.5/using/syntax.html) that you should definitely review, so you know everything that is available to you.
2023-05-18 20:11:02 +00:00
### Sphinx
2023-05-19 14:18:14 +00:00
This is a large documentation effort.
Many different Markdown pages will together make up the full website.
2023-05-18 20:11:02 +00:00
You will mostly use Sphinx in the background - you won't be aware of it.
2023-05-19 14:18:14 +00:00
But if you decide that you want to alter the theme (the colors, styles, etc...) of the final website, Sphinx controls this and offers [themes](https://sphinx-themes.org/) and the ability to change styles / colors and formatting through the site.
2023-05-18 20:11:02 +00:00
You just need to learn a little CSS to control it.
### GitHub
2023-05-19 14:18:14 +00:00
2023-05-18 20:11:02 +00:00
Our project is managed by a version control system called Git.
2023-05-19 14:18:14 +00:00
You can use GIT to submit changes to the documentation, in the same we use to submit changes to our code.
It is available on GitHub as the [spiff-arena project](https://github.com/sartography/spiff-arena).
GitHub also manages versions of the code and handles running tests.
Readthedocs observes changes in git and manages an automated process that causes our documentation to be built and deployed.
It will take a bit to get comfortable with Git, but when you do, you will come to love it (or maybe hate it, but with a lot of respect).
2023-05-18 20:11:02 +00:00
## Setup
So that's a lot of tools, and seemingly a lot to learn.
But you will find that most of it just works - and that once you get into a regular flow, it will become second nature.
### Step 1: Pre-Requisites
2023-05-20 19:28:53 +00:00
2023-05-19 14:18:14 +00:00
Assure you have been granted write access to our git repository.
2023-05-20 19:28:53 +00:00
Make sure you have an account on GitHub and then contact `dan@sartography.com` and ask him to add you as a contributor.
2023-05-18 20:11:02 +00:00
### Step 2: Install VSCode
2023-05-20 19:28:53 +00:00
2023-05-18 20:11:02 +00:00
[Download VSCode](https://code.visualstudio.com/) and install it on your computer.
### Step 3: Install Python
2023-05-20 19:28:53 +00:00
2023-05-19 14:18:14 +00:00
We need python in order to build the website locally so we can really see what our content is going to look like once we publish.
It's going to be handy for other reasons as well.
We'll want python to be properly set up inside of VS Code.
Follow [these directions and brief tutorial](https://code.visualstudio.com/docs/python/python-tutorial) to assure this is set up.
2023-05-18 20:11:02 +00:00
### Step 3: Connect VSCode to Git
2023-05-20 19:28:53 +00:00
2023-05-18 20:11:02 +00:00
VSCode comes with Git built in.
2023-05-19 14:18:14 +00:00
So you can use VSCode to "pull" changes from others down to your local computer and "push" changes back up to share with others (and to cause our docs site to rebuild).
2023-05-18 20:11:02 +00:00
2023-05-19 14:18:14 +00:00
Here are directions for how to [clone Spiff-Arena](https://learn.microsoft.com/en-us/azure/developer/javascript/how-to/with-visual-studio-code/clone-github-repository?tabs=create-repo-command-palette%2Cinitialize-repo-activity-bar%2Ccreate-branch-command-palette%2Ccommit-changes-command-palette%2Cpush-command-palette#clone-repository).
2023-05-20 19:28:53 +00:00
**IMPORTANT**: Follow those directions, but be sure to checkout `https://github.com/sartography/spiff-arena` instead of the project they are using!
2023-05-18 20:11:02 +00:00
You can save the project to any directory on your computer.
We strongly suggest you create a sub-folder called "projects" in your "home" or "Desktop" folder and checkout the code into this directory.
### Step 4: Open just the Docs Folder
2023-05-19 14:18:14 +00:00
We've checked out the whole spiff-arena project, but we are only going to be working inside of the docs directory.
So let's open just that folder in VSCode.
2023-05-18 20:11:02 +00:00
* Go to File -> Open Folder
* Select the "docs" folder inside of spiff-arena.
2023-05-20 18:35:32 +00:00
Now click on the two pieces of paper at the top corner of your screen, and you should see a project that looks like this without all the rest of the code in your way:
2023-05-18 20:11:02 +00:00
![Docs Directory](./images/docs_dir.png "Docs Directory")
### Step 4: Add some extensions
2023-05-20 19:28:53 +00:00
* Inside VSCode, go to File -> Preferences -> Extensions
* Search for "myst"
* click the "install" button.
* Repeat, this time installing the "Python" extension for VS Code (from Microsoft)
2023-05-18 20:11:02 +00:00
![Myst Extension](./images/myst.png "Search or MyST in extensions")
### Step 5: Install Python Dependencies
2023-05-20 19:28:53 +00:00
2023-05-19 14:18:14 +00:00
This project requires a few Python dependencies to work correctly.
We are going to set up a Virtual Environment for Python to keep us sane later on.
You can do that by following these steps:
2023-05-18 20:11:02 +00:00
1. Open the Command Palette (Ctrl+Shift+P), start typing the **Python: Create Environment** command to search, and then select the command.
1. Select **Venv**
2023-05-20 18:35:32 +00:00
1. Select Python 3.11 from the list of options if there is more than one thing to select.
1. Be sure the checkbox next to "requirements.txt" is selected.
2023-05-18 20:11:02 +00:00
1. Click OK.
### Step 6: Fire up the website
2023-05-20 19:28:53 +00:00
2023-05-19 14:18:14 +00:00
1. Go to Terminal -> New Terminal
1. type: **sphinx-autobuild . _build/html -W -a -j auto -n** at the prompt and hit enter.
2023-05-20 19:28:53 +00:00
1. Open your browser and go to [http://127.0.0.1:8000](http://127.0.0.1:8000).
2023-05-18 20:11:02 +00:00
2023-05-22 20:13:37 +00:00
### Step 7: Make a change
2023-05-20 19:28:53 +00:00
2023-05-18 20:11:02 +00:00
1. Open up a markdown file, and make a change.
2023-05-20 19:28:53 +00:00
### Step 8: Commit your changes and push them up for everyone
2023-05-19 14:18:14 +00:00
1. Select the "git" button on the left hand side of the toolbar (circles with lines between them) ![Git button](./images/git.png "Git button")
2023-05-18 20:18:23 +00:00
2. Press the blue "Commit" button.
2023-05-19 14:18:14 +00:00
3. Any changes you pushed up should be live on our website within 5 to 10 minutes.
2023-05-19 14:54:01 +00:00
## Linting
2023-05-20 19:28:53 +00:00
```{admonition} Linting is just an idea
:class: warning
2023-05-19 14:54:01 +00:00
Documentation people: please ignore this for now.
2023-05-20 19:28:53 +00:00
```
2023-05-19 14:54:01 +00:00
We may decide to check the documentation with a "linter" which is designed to keep the documentation consistent and standardized.
2023-05-20 19:28:53 +00:00
One option is [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli), which uses David Anson's [NodeJS-based markdownlint](https://github.com/DavidAnson/markdownlint), which these days seems to be more popular than the [ruby-based markdownlint](https://github.com/markdownlint/markdownlint).
2023-05-19 14:54:01 +00:00
A `.markdownlint.jsonc` file has been added that configures the same markdownlint program (basically to ignore the rule about long lines, since we are using ventilated prose).