
Verasity is developing a next-generation video sharing platform. Their platform will empower creators and improve the experience of watching video online.
In this article, we’ll show you how to build a simple application using DADI web services to manage and display a list of Verasity videos.
We'll use DADI API as the data store, DADI Web for the templating and DADI Publish as the editorial interface.
Before continuing, make sure to clone the accompanying GitHub repository and follow the instructions to get the applications up and running.
Part 1: Storing videos
DADI API is the brain of the operation. It's the data store where we persist all the videos and their metadata.
Data is divided into collections (equivalent to tables in the relational database world). The following JSON file defines the schema for our videos collection, comprising fields for the video URL, thumbnail image and a few other properties.
{
"fields": {
"title": {
"type": "String",
"required"
Tutorials
Last Updated:
July 2019


