Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 1.09 KB

File metadata and controls

22 lines (16 loc) · 1.09 KB

Server entrypoints

This section documents server entrypoints — scripts located in the root of server/ that act as HTTP gateways or CLI tools.

Entrypoints index

  • frontend.php — Web UI API gateway (HTTP).
  • mobile.php — Mobile API gateway (HTTP).
  • cli.php — CLI tooling: server/cli/* modules plus per-backend commands via cliUsage() / cli().
  • asterisk.php — Asterisk integration endpoint (HTTP).
  • internal.php — Internal API gateway (HTTP).
  • kamailio.php — Kamailio integration endpoint (HTTP).
  • wh.php — Webhook gateway (HTTP).
  • ud363.php — UD363 integration endpoint (HTTP).
  • qr.php — QR endpoint (HTTP).
  • test.php — Local development/testing entrypoint.

Notes

  • These entrypoints are intentionally simple PHP scripts: they load config, connect to storages (DB/Redis/etc.), and dispatch requests to server/api/* and/or backends.
  • test.php is intended for local testing and is not a production interface.