Skip to content

lessthan3/maestro-bbd-sdk-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maestro BBD SDK Example

A minimal example application demonstrating how to integrate the Maestro Web SDK into a React application.

Prerequisites

  • Node.js 16+
  • Yarn

Getting Started

  1. Clone the repository:
git clone https://github.com/lessthan3/maestro-bbd-sdk-example.git
cd maestro-bbd-sdk-example
  1. Install dependencies:
yarn
  1. Configure your Site ID and Page ID in src/App.tsx:
const SITE_ID = "YOUR_SITE_ID";
const PAGE_ID = "YOUR_PAGE_ID";
  1. Start the development server:
yarn start

The app will open at http://localhost:3000.

Project Structure

maestro-bbd-sdk-example/
├── public/
│   └── index.html        # HTML template
├── src/
│   ├── index.tsx         # Entry point
│   ├── App.tsx           # Main app with SDK initialization
│   ├── AppDelegate.ts    # SDK delegate implementation
│   ├── VideoPlayer.tsx   # Video player component
│   └── styles.css        # Application styles
├── package.json
├── tsconfig.json
└── webpack.config.js

SDK Integration

See the Hello-World PR for a complete example of Maestro SDK integration.

Available Scripts

  • yarn start - Start development server
  • yarn build - Build for production

License

MIT

About

Example application demonstrating the Maestro Browser Based Devices SDK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors