This is the source code to the Veritone aiWARE platform documentation available at docs.veritone.com. If you'd like to read the documentation, it's probably easiest to do it there.
If you find something you think is inaccurate, feel free to create an issue.
If you would like to suggest an edit to the docs, feel free to submit a pull request. You'll probably want to chat with us in our Slack community first if it's a large change to make sure we're in alignment.
The process is typically to create a branch, work on new content, push a commit, then open a pull request with @kasthomas2 as reviewer. When you are creating a brand new page, try to find a suitable slot for it in the nav sidebar; and create an entry for your new page in src/docs/_sidebar.md. (Commit the _sidebar.md edit along with your other content and submit a PR on the whole thing.)
Veritone engineers may consult this page for detailed information on how best to submit content, however this not required in order to contribute content.
Veritone Docs is a static site built using Markdown files and powered by Docsify.
The first time you run after cloning the repository to your machine, you need to do the following to bootstrap the build:
nvm install
npm install -g yarn
yarn install
yarn build
yarn start
Thereafter, you can just run
nvm use
yarn start
This will spin up a local instance of the docs at http://localhost:3000.
If you get an error like node\r: No such file or directory
it's because docsify has DOS line endings,
and you need to remove them with
sed -i.bak s/$'\r'// node_modules/docsify-cli/bin/docsify
And don't forget to re-run yarn install
any time you pull new code.
To submit changes, create a branch off master, add your commits, and create a pull request from your branch to master.
If the branch is in this repo (not a fork) and the name begins with feature/VTN-
(internal Veritone users only),
our build system will build it and let you know if it passed in the PR.
Once the PR is merged into master, it will be auto-deployed to docs.veritone.com.
For consistency, most documentation pages should fall under one of the following standard types:
- Overview
- Getting Started
- Quickstart
- Tutorial
- In-Depth Topic
- Auto-Generated Reference
In general, try to keep everything as simple as possible.
Use heading 1s (# Title
) for the page title, then heading 2s (## Title
) for major sections, section 3s for subsections and so on.
Don't choose headings based on the font size.
Separate sentences with a single carriage return. When rendered this will just put a single space between the sentences. Keeping sentences on separate lines helps to keep the markdown easily viewable without paragraphs running way off the screen. For an actual paragraph break, separate with two carriage returns.
See the docsify documentation for the available helpers. Our conventions for this repo are as follows:
>
is used for generally helpful hints and tips.?>
is used for more important hints and tips. While>
notes could probably be skipped over by the reader and they'd still be successful, we expect they need to read the?>
notes.!>
is used for warnings about deprecated or otherwise problematic "land mines" the user should stay away from.
Note the code type distinction after the 3 backticks. It can be any of the following codes:
- graphql
- json
- javascript
- python
- bash
- http
- css
- html
query {
temporalDataObjects {
records {
id
name
description
tasks {
records {
id
name
description
}
}
}
}
}
Tables are great for displaying multi-dimensional information. Unfortunately, they're a bit of a pain to deal with in Markdown. Don't try to line everything up perfectly in the markdown; just ensure you have all the right separators. Line up the table headers and the line under them, and for the rows, just add separators where appropriate.
| Parameter | Value |
| --------- | ----- |
| `preferredInputFormat` | `"text/plain"` |
| `supportedInputFormats` | `["text/plain"]` |
| `engineMode` | `"chunk"` |
If needed, Markdown does support using HTML directly inside of it, but try to avoid it wherever possible.
For example, don't sprinkle around a bunch of <br>
tags just to get more spacing; let the site handle the formatting for you.
If we start to see that we need extra padding after h3s for example, we can apply it globally in the future.
If there is an advanced feature that you want added to lots of different places, consider building a plugin to render it based on very simple markdown (e.g. ) See the docsify documentation for the available helpers. Our conventions for this repo are as follows:
To add a new link to the sidebar, please add a new entry to the _sidebar.md file.
To add a child link to the sidebar, navigate to the child folder and update the _sidebar.md
file to include the child link.
See https://github.com/veritone/veritone.github.io/blob/develop/docs/engines/quick-start/_sidebar.md for an example.
There is a suite of end-to-end tests at test/e2e.
They are written using CodeceptJS with Puppeteer.
To add a test file, just add any file under the test/e2e with .test.js
at the end of it.
The test suite is run automatically as part of the Jenkins and Docker builds. The test suite is also run as a git commit hook. This ensures that you cannot commit unless tests are passing.
To quickly run the test suite manually while you already have a docs instance running on port 3000 (via yarn start
)
you can run yarn test:only
in another console.
All the test scripts are configured to output basic information to stdout and to also write a JUnit test result report at test-results.xml
.
The JUnit results should then be able to be visualized in CI pipelines like Jenkins or other tools.
To generate a nice pretty interactive report of test results, you can run yarn test
.
It will run the full test suite in a way that generates detailed results and then open a UI called Allure to view those results in an interactive web report.
Allure requires Java to be installed
To test the Docker build locally (internal Veritone users only), you can do the following:
# First, connect to VPN
# Export github access token
export GITHUB_ACCESS_TOKEN=redacted
# Build
docker build --build-arg GITHUB_ACCESS_TOKEN=$GITHUB_ACCESS_TOKEN --build-arg ENVIRONMENT=dev -t docs .
# Run
docker run -it --rm -p 9000:9000 docs:latest
This is for local testing only. Production builds happen through Jenkins.
If you run into issues with running Docsify, refer the below list of known issues:
$ yarn serve
yarn run v1.22.10
$ docsify serve ./build-${ENVIRONMENT:-local}
env: node\r: No such file or directory
error Command failed with exit code 127.
# Fix
vi node_modules/docsify-cli/bin/docsify
:set ff=unix
:wq
Copyright 2017, Veritone Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.