Title here
Summary here
Before persistence and auth, orient yourself in the repo you have been editing.
AppRealm boots once per processtask.list| Path | You will use it for |
|---|---|
bootstrap/application.php | Boot chain; add providers in Step 14 |
environment/settings.ini | [db], [app_switches], middleware |
environment/.env | DEBUG, PORT, secrets |
services/ | TaskService, MemberService (Step 9) |
switches/ | Register service aliases |
middlewares/ | Step 10 — RequestIdMiddleware |
authentications/ | Step 9 — JWT backend |
providers/ | Step 14 — AppProvider |
database/ | Step 5 — schema.sql |
storage/logs/ | Runtime logs |
public/ | SPA build in Step 12 |
Deep reference: Application structure.
You should still be able to run:
curl -s -X POST http://127.0.0.1:8000/api/v1/ \
-H "Content-Type: application/json" \
-d '{"service":"task","action":"list"}'routes.php for API versions — use [app_switches] instead.public/index.php — keep it in services.