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.
Veritone Docs is a static site built using Markdown files and powered by Docsify.
- node 8
yarn install
yarn start
This will spin up a local instance of the docs at http://localhost:3000.
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.
query {
temporalDataObjects {
records {
id
name
description
tasks {
records {
id
name
description
}
}
}
}
}
https://docsify.js.org/#/helpers
To add a new link to the sidebar, please add a new entry to https://github.com/veritone/veritone.github.io/blob/develop/docs/_sidebar.md.
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.
This is just to test locally. Production builds will happen by Jenkins
# 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
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.