BrightID-Meet is a web app to list BrightID meetings for different timezones and can be used for other listing any sort of weekly events like online courses. BrightID-Meet is implemented in Vus.js.
You can find a running demo on BrightID meet page.
Two types of meetings/events can be defined to be listed in BrightID-meet:
A. Weekly meetings that are displayed repeatedly on a specific week day on defined time. These meetings should be defined in weeklybase.json file.
B. One time meeting that are only displayed on defined date and time. These meetings should be defined in specialMeet.json file.
Note: Times should be set in UTC (Coordinated Universal Time) time. BrightID-Meet automatically converts UTC times set in json files to local times based on client timezone.
BrightID-Meet list meetings in client local time. Users can also change timezone using a selectbox on top of the meetings page.
Note: Timezones can be configured by editing timezones.json.
BrightID-Meet enables users to add meetings their google calendar.
BrightId-Meet is designed to be properly shown on both desktop and mobile phones.
$ git clone https://github.com/BrightID/BrightID-Meet.git
$ cd BrightID-Meet
$ npm install
- Enable google calendar API under your google account and create an API key following this guide.
- Configure
apiKey
andclientId
in main.js.
Note: See Google Calendar API for more information.
$ npm run serve
$ npm run build
This will create a dist
folder that you can place on a production web server like nginx.