MSAgent-Chat/README.md

877 B

msagent-chat

Monorepo for the Computernewb Agent Chat project

Includes:

  • msagent.js/: A JavaScript library for parsing and displaying Microsoft Agent ACS files
  • protocol/ Shared JSON protocol types for the webapp and server
  • webapp/ The Agent Chat Webapp
  • server/ - The Agent Chat Server

Jumpstart

  1. Install dependencies: yarn
  2. Build everything
yarn workspace @msagent-chat/msagent.js build
yarn workspace @msagent-chat/protocol build
yarn workspace @msagent-chat/webapp build
yarn workspace @msagent-chat/server build
  1. Copy server/config.example.toml to server/config.toml and fill out the relevant fields.
  2. Run the server: yarn workspace @msagent-chat/server serve
    • Run the webapp on the development webserver: yarn workspace @msagent-chat/webapp serve; OR
    • Copy the webapp contents from webapp/dist/ to your webroot