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 (eitherhttporhttps),HOST: host name (api.zswitch.netor127.0.0.1orlocalhostor any IP address or hostname)PORT: and server port (8443or80or whatever available number)- Note that if your OS is already running Kazoo, port
8000is alreay devoted to the Kazoo API server
- Note that if your OS is already running Kazoo, port
- Get Kazoo-UI from GitHub
git clone git@github.com:2600hz/kazoo-ui.git kazoo-ui.git- Edit
config/config.js'sapi_urlfields 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 3333Your own version of Kazoo-UI is now up and running at http://localhost:3333/!