You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
618 B

2 years ago
Learning Analytics Dashboard will be accessible through https://yourdomain/learning-analytics-dashboard
# Dev Instructions
## Prepare destination directory
```
mkdir -p /var/bigbluebutton/learning-dashboard
chown bigbluebutton /var/bigbluebutton/learning-dashboard/
```
## Build instructions
```
# verify we are in the bbb-learning-dashboard directory ~/src/bbb-learning-dashboard
pwd
if [ -d node_modules ]; then rm -r node_modules; fi
npm install
npm run build
cp -r build/* /var/bigbluebutton/learning-dashboard
```
## Update nginx config
```
cp learning-dashboard.nginx /usr/share/bigbluebutton/nginx/
```