aillom-vox-client 2.1.2 → 2.1.3
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 +32 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,16 +54,46 @@ Hosted docs: `https://vox.aillom.com/docs`
|
|
|
54
54
|
|
|
55
55
|
### Test the published npm package
|
|
56
56
|
|
|
57
|
-
Full browser test with UI
|
|
57
|
+
Full browser test with UI.
|
|
58
|
+
|
|
59
|
+
Windows PowerShell:
|
|
60
|
+
|
|
61
|
+
```powershell
|
|
62
|
+
winget install --id OpenJS.NodeJS.LTS -e
|
|
63
|
+
winget install --id Git.Git -e
|
|
64
|
+
git clone https://github.com/aillom/aillom-vox-client.git
|
|
65
|
+
cd aillom-vox-client\examples\npm-quickstart
|
|
66
|
+
npm install
|
|
67
|
+
npm run dev
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Ubuntu / Debian:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
sudo apt update
|
|
74
|
+
sudo apt install -y git curl ca-certificates
|
|
75
|
+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
|
|
76
|
+
export NVM_DIR="$HOME/.nvm"
|
|
77
|
+
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
|
|
78
|
+
nvm install --lts
|
|
79
|
+
nvm use --lts
|
|
80
|
+
git clone https://github.com/aillom/aillom-vox-client.git
|
|
81
|
+
cd aillom-vox-client/examples/npm-quickstart
|
|
82
|
+
npm install
|
|
83
|
+
npm run dev
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
macOS:
|
|
58
87
|
|
|
59
88
|
```bash
|
|
89
|
+
brew install node git
|
|
60
90
|
git clone https://github.com/aillom/aillom-vox-client.git
|
|
61
91
|
cd aillom-vox-client/examples/npm-quickstart
|
|
62
92
|
npm install
|
|
63
93
|
npm run dev
|
|
64
94
|
```
|
|
65
95
|
|
|
66
|
-
Open the Vite URL, paste your `av_...` key, click **Carregar vozes**, then **Iniciar chamada**.
|
|
96
|
+
Open the Vite URL, paste your `av_...` key, click **Carregar vozes**, then **Iniciar chamada**. Full setup and troubleshooting steps are in [docs/NPM_QUICKSTART.md](docs/NPM_QUICKSTART.md).
|
|
67
97
|
|
|
68
98
|
Terminal smoke test:
|
|
69
99
|
|
package/package.json
CHANGED