Integration
Custom domain
The app is served from qiyas.velents.ai. Lovable's published URL (qiyas-whisperer.lovable.app) remains valid as a fallback.
Deep links
/p/<projectId>— open a project workspace./p/<projectId>/report— open the printable report./docs,/docs/api, … — open the documentation.
All routes are SSR-friendly and shareable. Pass the project URL to teammates directly.
Creating a project from outside
To pre-create a project (for example from another internal tool), insert a row into the projectstable via the Lovable Cloud client and redirect the user to /p/<newId>:
const { data } = await supabase
.from("projects")
.insert({ standard_code: "5.11.1", entity_name: "Acme" })
.select()
.single();
window.location.href = `https://qiyas.velents.ai/p/${data.id}`;Embedding
The report page (/p/$id/report) is print-friendly; you can render it in an iframe inside an admin dashboard, or print it directly to PDF from the browser.
Webhooks / automation
Realtime change events on files and mappings are available via the Lovable Cloud client. Subscribe with supabase.channel(...).on("postgres_changes", ...) filtered by project_id to react to verdict updates in your own systems.