Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.11 KB

README.md

File metadata and controls

34 lines (28 loc) · 1.11 KB

kazoo-ui

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:

  1. WEB: the transport protocol (either http or https),
  2. HOST: host name (api.zswitch.net or 127.0.0.1 or localhost or any IP address or hostname)
  3. PORT: and server port (8443 or 80 or whatever available number)
    • Note that if your OS is already running Kazoo, port 8000 is alreay devoted to the Kazoo API server

Quick setup & launch

  • Get Kazoo-UI from GitHub
git clone [email protected]:2600hz/kazoo-ui.git kazoo-ui.git
  • Edit config/config.js's api_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/!