Kazoo-UI is not maintained by 2600Hz anymore, we encourage you to use Monster-UI instead.
If you want to keep adding features to Kazoo-UI, feel free to fork it and we will be more than happy to link your project here as an alternative solution
Note that Kazoo's default listening port is 8000
.
Kazoo-UI is a static website project that uses Kazoo's API.
Thus all one needs to configure is:
WEB
: the transport protocol (eitherhttp
orhttps
),HOST
: host name (api.zswitch.net
or127.0.0.1
orlocalhost
or any IP address or hostname)PORT
: and server port (8443
or80
or whatever available number)- Note that if your OS is already running Kazoo, port
8000
is alreay devoted to the Kazoo API server
- Note that if your OS is already running Kazoo, port
- Get Kazoo-UI from GitHub
git clone [email protected]:2600hz/kazoo-ui.git kazoo-ui.git
- Edit
config/config.js
'sapi_url
fields with the above information
api_url: 'https://api.zswitch.net:8443/v1'
becomes
api_url: 'WEB://HOST:PORT/v1'
WEB
, HOST
& PORT
replaced by the values you picked.
- Serve this static website's content
cd kazoo-ui.git
python -m SimpleHTTPServer 3333
Your own version of Kazoo-UI is now up and running at http://localhost:3333/!