updating repo name
This commit is contained in:
Родитель
c415cd872c
Коммит
6d92e73cb9
13
README.md
13
README.md
|
@ -1,6 +1,5 @@
|
|||
# Ibex Dashboard [![Build Status](https://travis-ci.org/CatalystCode/ibex-dashboard.png?branch=master)](https://travis-ci.org/CatalystCode/ibex-dashboard)
|
||||
# Ibex Dashboard [![Build Status](https://travis-ci.org/Azure/ibex-dashboard.png?branch=master)](https://travis-ci.org/Azure/ibex-dashboard)
|
||||
|
||||
> Notice: This repo is in the process of moving into a new home. We will update once this happens in this page.
|
||||
|
||||
[Ibex](http://aka.ms/ibex) is a dashboarding application that enables building dashboard and templates.
|
||||
It mainly supports **Application Insights** but data sources and visual components are easily extendable.
|
||||
|
@ -25,7 +24,7 @@ Version 1.2 breaks the persitency paths of dashboard files and custom templates.
|
|||
```bash
|
||||
npm install yarn -g
|
||||
|
||||
git clone https://github.com/CatalystCode/ibex-dashboard
|
||||
git clone https://github.com/Azure/ibex-dashboard
|
||||
cd ibex-dashboard
|
||||
yarn
|
||||
yarn start
|
||||
|
@ -74,7 +73,7 @@ There are 3 ways to deploy to Azure:
|
|||
|
||||
### 2. Web App On Linux - Automated with Docker Hub
|
||||
|
||||
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FCatalystCode%2Fibex-dashboard%2Fmaster%2Fscripts%2Fdeployment%2Fwebapponlinux%2Fazuredeploy.json" target="_blank">
|
||||
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fibex-dashboard%2Fmaster%2Fscripts%2Fdeployment%2Fwebapponlinux%2Fazuredeploy.json" target="_blank">
|
||||
<img src="http://azuredeploy.net/deploybutton.png"/>
|
||||
</a>
|
||||
|
||||
|
@ -88,7 +87,7 @@ There are 3 ways to deploy to Azure:
|
|||
|
||||
1. `docker build -t **image name** .`
|
||||
2. `docker run -d -e PORT=80 **image name** `
|
||||
3. Docker image is also available at Docker Hub - `docker pull catalystcode/ibex-dashboard`
|
||||
3. Docker image is also available at Docker Hub - `docker pull morshemesh/ibex-dashboard`
|
||||
|
||||
# Application Insights Integration
|
||||
|
||||
|
@ -111,8 +110,8 @@ The following steps explain how to connect **Application Insights** bot with you
|
|||
7. Under **AppId**/**ApiKey** set the values you created.
|
||||
|
||||
### Adding Application Insights instrumentation to your bot
|
||||
- [Instrumentation for Node.js bots](https://github.com/CatalystCode/botbuilder-instrumentation)
|
||||
- [Instrumentation for C# bots](https://github.com/CatalystCode/botbuilder-instrumentation-cs)
|
||||
- [Instrumentation for Node.js bots](https://github.com/Azure/botbuilder-instrumentation)
|
||||
- [Instrumentation for C# bots](https://github.com/Azure/botbuilder-instrumentation-cs)
|
||||
|
||||
# Testing
|
||||
The test watcher is integrated into the create-react-app mechanism and runs tests related to files changes since the last commit.
|
||||
|
|
|
@ -203,7 +203,7 @@ interface IElement {
|
|||
/**
|
||||
* The name of the element type to be used
|
||||
* For a complete list follow:
|
||||
* https://github.com/CatalystCode/ibex-dashboard/tree/master/docs#elements-plugins
|
||||
* https://github.com/Azure/ibex-dashboard/tree/master/docs#elements-plugins
|
||||
*/
|
||||
type: string;
|
||||
/**
|
||||
|
|
|
@ -145,7 +145,7 @@ interface IElement {
|
|||
/**
|
||||
* The name of the element type to be used
|
||||
* For a complete list follow:
|
||||
* https://github.com/CatalystCode/ibex-dashboard/tree/master/docs#elements-plugins
|
||||
* https://github.com/Azure/ibex-dashboard/tree/master/docs#elements-plugins
|
||||
*/
|
||||
type: string;
|
||||
/**
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
},
|
||||
"repoURL": {
|
||||
"type": "string",
|
||||
"defaultValue": "https://github.com/CatalystCode/bot-fmk-dashboard.git",
|
||||
"defaultValue": "https://github.com/Azure/ibex-dashboard.git",
|
||||
"metadata": {
|
||||
"description": "Fork that repo than use the new url in [parameters file:repoUrl:value]."
|
||||
}
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
"displayName": "appSettings"
|
||||
},
|
||||
"properties": {
|
||||
"DOCKER_CUSTOM_IMAGE_NAME": "catalystcode/ibex-dashboard"
|
||||
"DOCKER_CUSTOM_IMAGE_NAME": "azure/ibex-dashboard"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -32,9 +32,9 @@ export const config: IDashboardConfig = /*return*/ {
|
|||
<h2>Getting the data to show</h2>
|
||||
<p>
|
||||
To see all the capabilities of this dashboard, it is recommended to integrate you bot with one of the following:<br/>
|
||||
<a href="https://github.com/CatalystCode/botbuilder-instrumentation" target="_blank">Node.js Telemetry Plugin</a>
|
||||
<a href="https://github.com/Azure/botbuilder-instrumentation" target="_blank">Node.js Telemetry Plugin</a>
|
||||
<br/>
|
||||
<a href="https://github.com/CatalystCode/bot-sample-telemetry" target="_blank">C# Telemetry Plugin</a><br/>
|
||||
<a href="https://github.com/Azure/bot-sample-telemetry" target="_blank">C# Telemetry Plugin</a><br/>
|
||||
This will enable the bot to send additional telemetry information to Application Insights.
|
||||
</p>
|
||||
<br/>
|
||||
|
|
|
@ -20,11 +20,11 @@ export const config: IDashboardConfig = /*return*/ {
|
|||
<p>
|
||||
To see all the capabilities of this dashboard, it is recommended to integrate you bot with one of the following:
|
||||
<br/>
|
||||
<a href="https://github.com/CatalystCode/botbuilder-instrumentation" target="_blank">
|
||||
<a href="https://github.com/Azure/botbuilder-instrumentation" target="_blank">
|
||||
Node.js Telemetry Plugin
|
||||
</a>
|
||||
<br/>
|
||||
<a href="https://github.com/CatalystCode/bot-sample-telemetry" target="_blank">C# Telemetry Plugin</a><br/>
|
||||
<a href="https://github.com/Azure/bot-sample-telemetry" target="_blank">C# Telemetry Plugin</a><br/>
|
||||
This will enable the bot to send additional telemetry information to Application Insights.
|
||||
</p>
|
||||
<br/>
|
||||
|
|
|
@ -20,11 +20,11 @@ export const config: IDashboardConfig = /*return*/ {
|
|||
Parts of this dashboard will not be functional unless you add additional telemetry
|
||||
with one of the following plugins:
|
||||
<br/>
|
||||
<a href="https://github.com/CatalystCode/botbuilder-instrumentation" target="_blank">
|
||||
<a href="https://github.com/Azure/botbuilder-instrumentation" target="_blank">
|
||||
Node.js Telemetry Plugin
|
||||
</a>
|
||||
<br/>
|
||||
<a href="https://github.com/CatalystCode/bot-sample-telemetry" target="_blank">C# Telemetry Plugin</a>
|
||||
<a href="https://github.com/Azure/bot-sample-telemetry" target="_blank">C# Telemetry Plugin</a>
|
||||
<br/>
|
||||
This will enable the bot to send additional telemetry information to Application Insights.
|
||||
<br/>
|
||||
|
|
|
@ -39,7 +39,7 @@ export const config: IDashboardConfig = /*return*/ {
|
|||
<p>
|
||||
<span>Refer to the </span>
|
||||
<span>
|
||||
<a href="https://github.com/CatalystCode/ibex-dashboard/blob/master/docs/bot-framework.md" target="_blank">
|
||||
<a href="https://github.com/Azure/ibex-dashboard/blob/master/docs/bot-framework.md" target="_blank">
|
||||
bot-framework
|
||||
</a> docs for setup instructions.</span>
|
||||
</p>
|
||||
|
|
|
@ -34,7 +34,7 @@ export const config: IDashboardConfig = /*return*/ {
|
|||
<p>
|
||||
<span>Refer to the </span>
|
||||
<span>
|
||||
<a href="https://github.com/CatalystCode/ibex-dashboard/blob/master/docs/bot-framework.md" target="_blank">
|
||||
<a href="https://github.com/Azure/ibex-dashboard/blob/master/docs/bot-framework.md" target="_blank">
|
||||
bot-framework
|
||||
</a> docs for setup instructions.</span>
|
||||
</p>
|
||||
|
|
Загрузка…
Ссылка в новой задаче