This GitHub repository is where the help documentation lives for data portals developed by Axiom Data Science (Axiom). Contributions to this documentation by our partner organizations are welcome via pull requests. These instructions describe how the repository is structured and how partners can contribute custom content for their data portal.
Data portal: a web-based application for exploring, visualizing, and interacting with environmental data. A data portal is composed of a Data Catalog (a search page with a list of available datasets) and a Data Map (a map-based page with data displayed spatially).
Brand: a partner organization with their own version of the data portal. The basic data portal technology is shared among Axiom's partners, but each data portal has unique features and "branding" (e.g., logos, theme colors) specific to its partner organization.
Repository (repo): a collection of files saved together on GitHub.
Fork: to make a copy of (specifically, to make a copy of a GitHub repo that you can work on without affecting the master copy).
Pull request: a way to let a project owner (in this case, Kyle Wilcox (@kwilcox)) know that you've made edits you would like to be added to the master copy.
Edits: any kind of change to the content of a file in the repo. Edits can include adding, changing, or deleting text, images, or code. Basically anything that changes any single character of any file in the repo is considered an edit by GitHub.
The data portal help documentation is set up as a website, which you can think of as a bunch of HTML files. Those HTML files are generated by Sphinx, which is a Python-based tool that turns plain-text files into HTML files.
In order for Sphinx to work its magic, those plain-text files have to be formatted according to certain conventions. In this case the convention is something called reStructuredText (RST). Files formatted according to the RST conventions have the extention ".rst" (index.rst
, for example).
As Sphinx is turning those RST files into HTML, it applies cascading style sheets (CSS) to make them look nice. For the data portal help docs, we've chosen the familiar Read the Docs theme for our CSS. Sphinx also adds nice touches like a search bar, a navigation pane, and your brand's logo.
The data portal help docs repository is organized into 3 directories, which you can think of as folders:
- The main folder, where 2 types of files live:
- RST files, where our primary content lives:
index.rst
, which is the home page of the docs siteoverview.rst
, which is the main overview page with most of the narrative content describing the data portal's features
- Admin type files, such as
conf.py
andmake.bat
, which we can safely ignore
- RST files, where our primary content lives:
- The
partner_content
subfolder, where a subdirectory for each brand's special content lives (in addition to aglobal
folder). Each partner's folder contains the following:- An
images
folder for custom screenshots and GIFs - A
static
folder for custom CSS - A
config.yml
file for brand-specific details (e.g., data portal title, partner logo file name) - A
substitutions.txt
file for defining short-cut names for brand-specific images
- An
- The
custom
subfolder, where a global CSS file lives that we don't have to worry about - The
how-to
subfolder, which hascatalog
andmap
subdirectories where individual files for the how-to pages live
This repo requires the following tools/resources to 'build' in sphinx or produce local previews. If you are not concerned with creating a local preview before submitting changes, you can skip these prereqs.
If your organization has a data portal with its own branding (e.g., logo, data portal name), you can add custom content for your data portal's help docs. To do this, you must first fork (make a copy of) the master portal docs repo.
You can find the official GitHub help docs on forking a repo here.
Please note that you only need to fork the master portal docs repo once. Once you've forked the repo you effectively have your own working copy. You can continue editing your copy in the future without having to "re-fork" each time.
Once you've made your edits, you can request that those edits be added to the master portal docs repo by making a pull request.
You can find the official GitHub help docs on pull requests here.
The data portal help docs will continue to look clean and professional if all images (screenshots and GIFs) are created using the same basic guidelines.
For screenshots:
- Take screenshots with your browser window at 100% magnification
- Adjust your browser window to get the best view of what you're trying to illustrate
- Crop out your browser window title bar so you can't see the address or any extra tabs you have open
- In your
substitutions.txt
file, define your screenshot to have width =1600px
and height =800px
For GIFs:
- Make GIFs with your browser window at 100% magnification
- Adjust your browser window to get the best view of what you're trying to illustrate
- Make GIFs with a height of
1000px
and a width of1000px
- Use 10 frames per second caputre rate
- Compress GIFs before adding them (e.g., use the "slight" setting on a GIF optimizer like this one.
- Gifsicle is also an option. Check it out here
- Go to the
partner_content
folder - Go to your brand's subfolder
- Go to your
pages
subfolder - Create a new RST file (e.g.,
my_new_page.rst
) - Add your content to that file using the RST conventions
- Save your file
- Make a pull request
- Check with Kyle Wilcox (kyle@axiomdatascience.com)
- Go to the
partner_content
folder - Go to your brand's subfolder
- Go to your
pages
subfolder - Open the RST file (e.g.,
my_existing_page.rst
) you would like to edit - Add your content to that file using the RST conventions
- Save your file
- Make a pull request
Make the image
- Create the screenshot or GIF using the guidelines above
- Go to the
partner_content
folder - Go to your brand's subfolder
- Go to your
images
subfolder - Save the file there (e.g.,
my_new_screenshot.png
)
Add it to your substitutions file
- Back out of your
images
folder to get to your subfolder inpartner_content
- Open the
substitutions.txt
file - Add a line to the appropriate section to create an alias for your image file (more about substitutions can be found here)
Finally
- Make a pull request
- Create your new screenshot or GIF using the guidelines above
- Go to the
partner_content
folder - Go to your brand's subfolder
- Go to your
images
subfolder - Delete the old file
- Save the file new file in its place and be sure it has the exact same name as the old file
If you have Docker installed, you can build an image and preview your changes.
Note that <portal>
corresponds to a directory under partner_content
.
docker build -t portal-docs --build-arg PORTAL=<portal> .
docker run --rm -p 8888:80 portal-docs
Then open a browser to http://localhost:8888.
If you have a question that isn't answered here, or if you find this guidance confusing or otherwise unhelpful, please contact Kyle Wilcox (https://github.com/kwilcox) directly. Your feedback will help us improve this documentation for future users.