#!/usr/bin/env python3 # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import os """ Bot Configuration """ class DefaultConfig: """ Bot Configuration """ PORT = 3428 APP_ID = os.environ.get("MicrosoftAppId", "") APP_PASSWORD = os.environ.get("MicrosoftAppPassword", "") NEXT = "http://localhost:3978/api/messages" SERVICE_URL = "http://localhost:3428/api/connector" SKILL_APP_ID = ""