Install Node.js and npm before proceeding.
- Install
yarn
package manager.
npm install -g yarn
- Install project dependancies.
yarn install
- Start the project
yarn start
All 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.
development
orproduction
(default:development
)