@moveo-ai/web-client 0.93.0 → 0.94.0-true.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/dist/147.min.js.LICENSE.txt +1 -1
- package/dist/329.min.js.LICENSE.txt +1 -1
- package/dist/audio-client.min.js +1 -1
- package/dist/audio-client.min.js.LICENSE.txt +1 -1
- package/dist/audio-client.min.js.map +1 -1
- package/dist/iframe.min.js.LICENSE.txt +1 -1
- package/dist/iframe.v2.min.js +1 -1
- package/dist/iframe.v2.min.js.LICENSE.txt +1 -1
- package/dist/iframe.v2.min.js.map +1 -1
- package/dist/index.html +1 -1
- package/dist/preview/index.html +2 -2
- package/dist/preview.css.min.js.LICENSE.txt +1 -1
- package/dist/web-client.min.js.LICENSE.txt +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -28,6 +28,7 @@ Embeddable chat widget for integrating [Moveo.ai](https://moveo.ai) AI Agents in
|
|
|
28
28
|
- [Configuration](#configuration)
|
|
29
29
|
- [TypeScript Support](#typescript-support)
|
|
30
30
|
- [Browser Support](#browser-support)
|
|
31
|
+
- [Local Development](#local-development)
|
|
31
32
|
- [License](#license)
|
|
32
33
|
|
|
33
34
|
## Quick Start
|
|
@@ -211,6 +212,22 @@ const controller: WidgetController = MoveoAI.init(config);
|
|
|
211
212
|
- Edge (latest)
|
|
212
213
|
- Mobile browsers (iOS Safari, Android Chrome)
|
|
213
214
|
|
|
215
|
+
## Local Development
|
|
216
|
+
|
|
217
|
+
### HTTPS Setup
|
|
218
|
+
|
|
219
|
+
The dev server runs on HTTPS. To avoid browser security warnings, generate locally-trusted certificates:
|
|
220
|
+
|
|
221
|
+
```bash
|
|
222
|
+
npm run setup:certs
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
This generates certificates in `.certs/` and attempts to install the CA into your system trust store (requires `sudo` on macOS/Linux). Restart your browser after running.
|
|
226
|
+
|
|
227
|
+
> **Firefox users:** Go to `about:preferences#privacy` → Certificates → View Certificates → Authorities → Import, and add `.certs/ca.crt`.
|
|
228
|
+
|
|
229
|
+
If the CA was not auto-installed, run the platform command printed by the script to add it manually.
|
|
230
|
+
|
|
214
231
|
## Support
|
|
215
232
|
|
|
216
233
|
- Documentation: [docs.moveo.ai](https://docs.moveo.ai)
|