Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 746 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 746 Bytes

VidiCore QC Theme

See Knowledge Base for more information on the initial setup.

Quick Start

Clone the repository and navigate to the root. Start the application by running:

yarn install
yarn start

Then open http://localhost:3000/ to see your app. Any change made to the code will automatically update the application.

Build

Compile the application locally.

yarn build

Enable S3 CORS Policy

This must be set on the S3 bucket to allow playback of media using signed URLs.

<CORSConfiguration>
 <CORSRule>
   <AllowedOrigin>http://localhost:3000/</AllowedOrigin>
   <AllowedMethod>GET</AllowedMethod>
 </CORSRule>
</CORSConfiguration>