Install Node.js and npm before proceeding.
- Install
yarnpackage manager.
npm install -g yarn- Install project dependancies.
yarn install- Start the project
yarn startAll environment variables should be set in a .env file in the root of the project.
PORT=3978
NODE_ENV=development- MICROSOFT_APP_ID : App ID for bot framework
- MICROSOFT_APP_PASSWORD : App Password for bot framework
- MICROSOFT_TEXT_ANALYTICS_KEY : Text Analytics key for sentiment
- PORT : Port for Node (default:
3978) - NODE_ENV : Tells Node what environment we want to run in.
developmentorproduction(default:development)