document standalone vue workflow

Update the AI guidance for the scaffolded npm application, its actual validation scripts, and its independent runtime boundary. Record the current lack of frontend test tooling without inventing commands.
This commit is contained in:
Yisroel Baum 2026-07-30 23:15:16 +03:00
parent 15925b856b
commit ff95e2d2ee
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
3 changed files with 118 additions and 69 deletions

View file

@ -4,7 +4,7 @@ Read `ai/shared.md` first. This file covers backend-specific rules.
## Project context
**Stack:** PHP 8.4, Laravel 13, Inertia Laravel, PHPUnit, Larastan, Composer.
**Stack:** PHP 8.4, Laravel 13, PHPUnit, Larastan, Composer.
**Location:** `backend/`.
@ -26,8 +26,11 @@ pattern.
duplicating query fragments.
- Avoid speculative interfaces and abstractions with only one trivial
implementation.
- Routes currently use Inertia, but the Vue client has not been scaffolded.
Do not add placeholder frontend assets as part of unrelated backend work.
- The Vue application is a separate project under `frontend/website/`.
- Keep frontend source, dependencies, builds, and delivery out of the backend
unless the user explicitly asks to integrate them.
- The backend root route is intentionally unclaimed. The built-in health
endpoint is `/up`.
## Tests