## Summary - move the Laravel application into `apps/platform` and keep the repository root for orchestration, docs, and tooling - update the local command model, Sail/Docker wiring, runtime paths, and ignore rules around the new platform location - add relocation quickstart/contracts plus focused smoke coverage for bootstrap, command model, routes, and runtime behavior ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/PlatformRelocation` - integrated browser smoke validated `/up`, `/`, `/admin`, `/admin/choose-workspace`, and tenant route semantics for `200`, `403`, and `404` ## Remaining Rollout Checks - validate Dokploy build context and working-directory assumptions against the new `apps/platform` layout - confirm web, queue, and scheduler processes all start from the expected working directory in staging/production - verify no legacy volume mounts or asset-publish paths still point at the old root-level `public/` or `storage/` locations Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #213
18 lines
616 B
PHP
18 lines
616 B
PHP
<div class="flex items-center gap-2">
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" class="h-7 w-7 shrink-0" fill="none">
|
|
{{-- Shield body --}}
|
|
<path
|
|
d="M16 2L4 7v8c0 8.5 5.1 16.4 12 18 6.9-1.6 12-9.5 12-18V7L16 2z"
|
|
class="fill-primary-600 dark:fill-primary-500"
|
|
/>
|
|
{{-- Checkmark --}}
|
|
<path
|
|
d="M13 17.5l-3-3 1.4-1.4L13 14.7l5.6-5.6L20 10.5l-7 7z"
|
|
class="fill-white"
|
|
/>
|
|
</svg>
|
|
<span class="text-lg font-bold tracking-tight text-gray-950 dark:text-white">
|
|
TenantPilot
|
|
</span>
|
|
</div>
|