To run the meeting
application demo locally:
-
Ensure you have AWS credentials configured in your
~/.aws
folder for a role with a policy allowingchime:CreateMeeting
,chime:DeleteMeeting
, andchime:CreateAttendee
. -
Change to the
demos/browser
folder:cd demos/browser
-
Start the demo application:
npm run start
-
Open http://localhost:8080 in your browser.
Demo applications are located in the app
folder. Current demos are:
meeting
- incorporates all functionality into a videoconferencing application with a Bootstrap user interfaceminimal
- barebones application that can be used as a starting point
To run a specific demo application use:
npm run start --app=<app>
For example, to run the minimal
demo, run:
npm run start --app=minimal
After running start
the first time, you can speed things up on subsequent iterations by using start:fast
, e.g.
npm run start:fast (--app=<app>)