Merge branch 'master' of github.com:nomadic-labs/ocrcc-bot

This commit is contained in:
Sharon Kennedy 2020-03-17 02:10:11 -04:00
commit 260bbbaf80

View File

@ -13,6 +13,7 @@ BOT_PASSWORD="password"
BOT_USERID="@example-bot:matrix.org" BOT_USERID="@example-bot:matrix.org"
FACILITATOR_ROOM_ID="!example:matrix.org" FACILITATOR_ROOM_ID="!example:matrix.org"
CHAT_OFFLINE_MESSAGE="There is no-one currently available to chat." CHAT_OFFLINE_MESSAGE="There is no-one currently available to chat."
CAPTURE_TRANSCRIPTS=true
``` ```
## Local development ## Local development
@ -36,6 +37,16 @@ cp .env.sample .env
Start the local server Start the local server
``` ```
yarn start yarn develop
```
Run the tests
```
yarn test
```
Production build
```
yarn build
``` ```