betagouv / bbb-analytics

Application that collect analytics from the BigBlueButton Analytics Callback and put it in a postgresql database for analytics purpose
MIT License
5 stars 3 forks source link

bbb-analytics

Application that collect analytics from the BigBlueButton Analytics Callback and put it in a postgresql database for analytics purpose

Configuration of the app

Configuration of bigbluebutton server

Notes

Run in dev mode

Once Postgres is launched, you can start the application with these commands :

» npm install # Récupère les dépendances
» npm run migrate # Applique les migrations
» npm run dev
   ...
   Running on port: 8100

The application will be available on http: // localhost: 8100 (8100 is the default port, you can change it with the env variablePORT)

Run with docker-compose

Run with docker without docker-compose

Run in production

» npm run start
   ...
   Running on port: 8100

Run tests

» npm run test