Skip to content
This repository was archived by the owner on Oct 21, 2024. It is now read-only.

Commit 4875e46

Browse files
committed
1.3.2 Updated dependencies and Readme.
1 parent db94349 commit 4875e46

File tree

5 files changed

+34
-58
lines changed

5 files changed

+34
-58
lines changed

.env.sample

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
MICROSOFT_APP_ID=<your_microsoft_app_id>
2+
MICROSOFT_APP_PASSWORD=<your_microsoft_app_password>
3+
TENEO_ENGINE_URL=<your_engine_url>

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.3.2
2+
## 14-10-2020
3+
* Updated dependencies
4+
15
# v1.3.1
26
## 30-06-2020
37
* Support for splitting outputs into multiple speech bubbles

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,15 @@ If you prefer to run your bot locally, see [Running the connector locally](#runn
3838

3939
### Register a bot with the Azure Bot Service
4040
To register your bot with the Azure Bot Service, you will need to create a new 'Bot Channels Registration'.
41-
1. Go back to [https://portal.azure.com/#home](https://portal.azure.com/#home) and in the search bar, find 'Bot Channels Registration' and select if from the suggested results (it will show up on the right, in the 'Marketplace' section).
41+
1. Go back to [https://portal.azure.com/#home](https://portal.azure.com/#home) and in the search bar, find 'Bot Channels Registration' and select if from the suggested results (it will show up on the right, in the 'Marketplace' section). You may be prompted to create a free Azure account for this.
4242
2. Give the bot a name, this is the name that will be available in Skype etc.
43-
3. Provide the details for the Subscription, Resource Group and Location.
44-
4. For 'Pricing Tier' you can choose the free 'F0 (10K Premium Messages)' during development.
45-
5. Enter the following URL in the Messaging Endpoint field: https://[yourherokuappname].herokuapp.com/api/messages (replace [yourherokuappname] with the name of your app on Heroku).
46-
- If you are running the connector locally, use the ngrok url which will look something like https://6ed67af7.ngrok.io/api/message
47-
6. Click on 'Auto create App ID and password' and in the 'blade' that appears click 'Create new' and in the next blade that appears enter the 'Application (client) ID' and 'Client Secret' that you copied earlier and click 'Ok'.
48-
7. Click 'Create' in the first blade to create your bot. You will be notified when the bot is available.
43+
3. Provide the details for the Subscription.
44+
4. Choose a Resource Group or create a new one. Keep in mind that new blank Resources Group only work with some locations, for example: Central US.
45+
5. For 'Pricing Tier' you can choose the free 'F0 (10K Premium Messages)' during development.
46+
6. Enter the following URL in the Messaging Endpoint field: https://[yourherokuappname].herokuapp.com/api/messages (replace [yourherokuappname] with the name of your app on Heroku).
47+
- If you are running the connector locally, use the ngrok url which will look something like https://6ed67af7.ngrok.io/api/messages
48+
7. Click on 'Auto create App ID and password' and in the 'blade' that appears click 'Create new' and in the next blade that appears enter the 'Application (client) ID' and 'Client Secret' that you copied earlier and click 'Ok'.
49+
8. Click 'Create' in the first blade to create your bot. You will be notified when the bot is available.
4950

5051
That's it! You can now test your bot by opening your bot resource in the Azure portal and choosing 'Test in Web Chat'.
5152

package-lock.json

Lines changed: 16 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@artificialsolutions/tie-api-example-ms-bot-framework",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "Example connector for Teneo and Microsoft Bot Framework",
55
"author": "Lucas Willering",
66
"license": "Apache-2.0",
@@ -14,10 +14,10 @@
1414
"url": "https://github.com/artificialsolutions/tie-api-example-ms-bot-framework"
1515
},
1616
"dependencies": {
17-
"@artificialsolutions/tie-api-client": "^1.3.5",
17+
"@artificialsolutions/tie-api-client": "^1.3.7",
1818
"botbuilder": "^4.9.2",
1919
"dotenv": "^8.2.0",
20-
"node-fetch": "^2.6.0",
20+
"node-fetch": "^2.6.1",
2121
"restify": "^8.5.1"
2222
}
2323
}

0 commit comments

Comments
 (0)