🚧A documentation site for IBM Video Streaming APIs, SDKs and use cases - Preview URL 🚧
With this repository Video Streaming developers can easily update their API and SDK documentations.
The site content is in mdx
format.
MDX is an authorable format that lets you seamlessly write JSX in your Markdown documents. You can import components, such as interactive charts or alerts, and embed them within your content. This makes writing long-form content with components a blast 🚀. MDX seeks to make writing with Markdown and JSX simpler while being more expressive.
The site content and page structure can be found here: developers/src/pages/
For example, you want to update the Channel API/Security/Embed Restriction page. Just navigate to developers/src/pages/channel-api-security/
folder and update the embed-restriction.mdx
file.
You can use Github UI to edit this file or you can checkout the repo and edit locally. For local development you can find instructions below.
Check out this article template file for available mdx components:
-
Prerequisite:
- Install NodeJS -
brew install node
- Install NodeJS -
-
Check out the repo
-
CD into the repo dir
-
Install the dependencies -
npm install
-
Run the site locally -
npm run dev
in order to create a new page, you have to
-
extend the nav items file:
src/data/nav-items.yaml
Each api url must starts with the api name.
api-basics
,channel-api
,viewer-authentication
,player-api
,analytics-api
-
pages are in markdown format. Create the new mdx file in the
src/pages/
directory, or edit an existing mdx file. Pages can be in the root in the pages directory. For example/player-api-usage
, or it can be in a separate directory,/player-api-examples/basic-embed
. Use directory is page if grouped in a main menu, use file if it stands alone. Examples of page contents can be found here:
The build and deployment process is automated with Travis CI and triggered by pushing to the master branch.
You can check the deployment logs here: https://travis-ci.org/github/IBM/video-streaming-developer-docs
For a change, please create a branch, and make a pull request to master. On every merge to master, deployment will start automatically, triggered by Travis. After 5-10 minutes, the changes will takes effect on the developer site live environment https://ibm.github.io/video-streaming-developer-docs
Travis runs gatsby build --prefix-paths
, which generates the production code in the /public directory.
Then gh-pages node command will copy the /public
directory's content into gh-pages branch.
The github pages url serves the content of the gh-pages branch.
To add MDX support for your editor: