This repository contains some content and the code to build operate-first.cloud. It is based on Gatsby and can be deployed to GitHub Pages.
We want to make it really easy for content contributors to add their material to the website. Content can be added directly to this repository or from a remote repository. The latter is the preferred way, so that content creators dont need to duplicate their content into this repository. This site is merely an aggregator.
Prefer adding content remotely to this website. This means, your content is in another git repository and you configure this site to pull in the content. You'll only add entries to the sitemap, so that your content can be accessed via links.
Add a gatsby-source-git section to gatsby-config.js.
{
resolve: `gatsby-source-git`,
options: {
name: `data-science/ocp-ci-analysis`,
remote: `https://github.com/aicoe-aiops/ocp-ci-analysis.git`,
patterns: [`**/*.md`, `**/*.ipynb`],
}
},
The name
for the plugin will be the prefix for URLs generated from that repository.
In the following example, all Markdown and JupyterNotebook files will be rendered as pages under the /data-science/ocp-ci-analysis
path.
The notebooks/data-sources/TestGrid/testgrid_EDA.ipynb Notebook will be rendered at /data-science/ocp-ci-analysis/notebooks/data-sources/TestGrid/testgrid_EDA.ipynb.
All local content goes into the /content folder. All files will be available as pages, starting from the root URL of the site.
For example, to add content locally to the blueprints
category, create a document located at content/blueprints/my_doc.md
.
Files formatted as
Markdown files can be prefixed with frontmatter.
See /content/examples/markdown.md rendered here
---
title: My Document
description: My Document Description
---
# Content goes here
valid markdown
To add videos to Markdown follow the instructions given in /content/examples/markdown.md#add-videos
Any file with the .ipynb
extension will be rendered as HTML. This is done via the gatsby-transformer-ipynb.
See /content/examples/jupyter_notebook.ipynb rendered here
Similar to Markdown, but you can add React Components, which basically extend HTML. E.g. you can embedd a JupyterNotebook into the MDX file.
See /content/examples/mdx.mdx rendered here
---
title: My MDX
description: MarkdownX
---
This is how I include a Notebook:
<JupyterNotebook path="jupyter_notebook.ipynb"/>
All links should be added as relative links, i.e. they should not start with a /
.
If you link to another document in your own content repository,
then a relative link will work when the content is rendered at GitHub and it will work in the gatsby site.
index.md
and README.md
files will be treated as index files. Their name will be stripped from the URL.
E.g. /folder/README.md
would result in /folder/
Content will be added to one of the four categories on this website:
- data-science: Examples of data science projects for the data science users that want to learn about data science on ODH.
- users: Documentation for all users of ODH. Access details of various deployed ODH components.
- operations: Documentation pertaining to Operate First operation procedures.
- blueprints: Generic information that can be applied to other projects as well.
- community: Operate First news, code of conduct, and other pertinent information to the Operate First community
Whether adding content remotely, or locally, the content needs to be added to the vertical navigation bar on the left and will belong to one of the four categories.
The config
directory contains category.yaml
files for each category eg: blueprints.yaml
for the Blueprints category and this file will contain the table of content navigation items for each document that you add.
- label: The Navigation Item
href: /the/url/to/the/page
Following is an example of 2 level hierarchy from a repo, for cases where you have to add more than one document from a repository as remote content.
- label: Continuous Delivery
links:
- label: (Opinionated) Continuous Delivery
href: /blueprints/continuous-delivery/docs/continuous_delivery
- label: Setting up Source Code Operations
href: /blueprints/continuous-delivery/docs/setup_source_operations
You can run the app locally to preview your changes. In terminal:
npm install
npm run dev
In case of stale cache or errors, please try:
npm run clean
We use Netlify to preview PR changes. Each PR will show a Netlify check that can be used to access a dynamically generated build and deployment of that PR.
CI will deploy to GitHub pages automatically on every push to default branch as well on daily schedule. You can trigger a new build manually if you have write permissions on this repo by simply clicking Run workflow button on the CI workflow details screen here.
Fully manual build is possible by issuing following commands (requires write access to the repo):
npm install
npm deploy