{"id":18260062,"url":"https://github.com/roppa/mychat","last_synced_at":"2025-04-08T23:44:42.131Z","repository":{"id":146092758,"uuid":"165879632","full_name":"roppa/mychat","owner":"roppa","description":"Example chatbot from Microsoft","archived":false,"fork":false,"pushed_at":"2019-01-15T15:54:59.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-14T18:36:29.178Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/roppa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-15T15:54:35.000Z","updated_at":"2019-01-15T15:55:01.000Z","dependencies_parsed_at":"2023-05-14T06:00:15.347Z","dependency_job_id":null,"html_url":"https://github.com/roppa/mychat","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roppa%2Fmychat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roppa%2Fmychat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roppa%2Fmychat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roppa%2Fmychat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/roppa","download_url":"https://codeload.github.com/roppa/mychat/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247947825,"owners_count":21023058,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T10:41:53.254Z","updated_at":"2025-04-08T23:44:42.114Z","avatar_url":"https://github.com/roppa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mychat\nhave a chat\n\nThis bot has been created using [Bot Framework][1], it shows how to create a simple bot that accepts input from the user and echoes it back.\n\n## Prerequisites\n- [Node.js][4] version 8.5 or higher\n    ```bash\n    # determine node version\n    node --version\n    ```\n# To run the bot\n- Install modules\n    ```bash\n    npm install\n    ```\n- Start the bot\n    ```bash\n    npm start\n    ```\n\n# Testing the bot using Bot Framework Emulator **v4**\n[Bot Framework Emulator][5] is a desktop application that allows bot developers to test and debug their bots on localhost or running remotely through a tunnel.\n\n- Install the Bot Framework Emulator version 4.2.0 or greater from [here][6]\n\n## Connect to the bot using Bot Framework Emulator **v4**\n- Launch Bot Framework Emulator\n- File -\u003e Open Bot Configuration\n- Navigate to `mychat` folder\n- Select `mychat.bot` file\n\n# Deploy the bot to Azure\n\n## Prerequisites\n- [Azure Deployment Prerequisites][41]\n\n## Provision a Bot with Azure Bot Service\nAfter creating the bot and testing it locally, you can deploy it to Azure to make it accessible from anywhere.  To deploy your bot to Azure:\n\n```bash\n# login to Azure\naz login\n```\n\n```bash\n# provision Azure Bot Services resources to host your bot\nmsbot clone services --name \"mychat\" --code-dir \".\" --location \u003cazure region like eastus, westus, westus2 etc.\u003e --sdkLanguage \"Node\" --folder deploymentScripts/msbotClone --verbose\n```\n\n## Publishing Changes to Azure Bot Service\nAs you make changes to your bot running locally, and want to deploy those change to Azure Bot Service, you can _publish_ those change using either `publish.cmd` if you are on Windows or `./publish` if you are on a non-Windows platform.  The following is an example of publishing\n\n```bash\n# run the publish helper (non-Windows) to update Azure Bot Service.  Use publish.cmd if running on Windows\n./publish\n```\n\n## Getting Additional Help with Deploying to Azure\nTo learn more about deploying a bot to Azure, see [Deploy your bot to Azure][40] for a complete list of deployment instructions.\n\n# Further reading\n- [Bot Framework Documentation][20]\n- [Bot Basics][32]\n- [Azure Bot Service Introduction][21]\n- [Azure Bot Service Documentation][22]\n- [Deploy Your Bot to Azure][40]\n- [Azure CLI][7]\n- [msbot CLI][9]\n- [Azure Portal][10]\n- [Language Understanding using LUIS][11]\n- [Restify][30]\n- [dotenv][31]\n\n[1]: https://dev.botframework.com\n[2]: https://www.typescriptlang.org\n[3]: https://www.typescriptlang.org/#download-links\n[4]: https://nodejs.org\n[5]: https://github.com/microsoft/botframework-emulator\n[6]: https://github.com/Microsoft/BotFramework-Emulator/releases\n[7]: https://docs.microsoft.com/en-us/cli/azure/?view=azure-cli-latest\n[8]: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest\n[9]: https://github.com/Microsoft/botbuilder-tools/tree/master/packages/MSBot\n[10]: https://portal.azure.com\n[11]: https://www.luis.ai\n[20]: https://docs.botframework.com\n[21]: https://docs.microsoft.com/en-us/azure/bot-service/bot-service-overview-introduction?view=azure-bot-service-4.0\n[22]: https://docs.microsoft.com/en-us/azure/bot-service/?view=azure-bot-service-4.0\n[30]: https://www.npmjs.com/package/restify\n[31]: https://www.npmjs.com/package/dotenv\n[32]: https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-basics?view=azure-bot-service-4.0\n[40]: https://aka.ms/azuredeployment\n[41]: ./PREREQUISITES.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froppa%2Fmychat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froppa%2Fmychat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froppa%2Fmychat/lists"}