Title here
Summary here
Your app exists on disk; now prove it responds over HTTP.
GET /api/v1/ping and a Moonlight welcome.ping actionFrom deskflow-api/:
php pionia serveIn a second terminal (same project root):
curl -s http://127.0.0.1:8000/api/v1/ping{ "returnCode": 0, "returnMessage": "pong", "returnData": null }curl -s -X POST http://127.0.0.1:8000/api/v1/ \
-H "Content-Type: application/json" \
-d '{"service":"welcome","action":"ping"}'Open services/WelcomeService.php, switches/MainSwitch.php, and environment/settings.ini — this service → switch → INI pattern repeats for DeskFlow.
PORT in .env (default 8000).application/json.