Wingbot AI Orchestrator: Frontend development steps
Because the frontend is in a separate repository, you must first link the frontend to the backend during development, and then run auto build.
Linking can be done via the utility link: https://docs.npmjs.com/cli/link, like this:
cd ~/<local_repo_path>/wingbot-chat-ui
npm link
cd ~/<local_repo_path>/wingbot-ai-orchestrator
npm link wingbot-chat-ui
Next, you need to run the command in the root of the wingbot-chat-ui project:
npm run develop
Furthermore, it is normally possible to continue the webchat project with the command:
npm run start