4b1635d045
Schema centrală: - companies (slug unique, status, plan_id, settings JSON, trial/active dates) - super_admins (operator platform) - plans (free/basic/pro) Schema tenant (toate cu company_id NOT NULL): - users (UNIQUE company_id+email) - clients - vehicles Tenancy core: - App\Tenancy\TenantManager singleton - App\Models\Concerns\BelongsToTenant trait + TenantScope - ResolveTenant middleware (slug → Company, 404 pentru rezervate/missing) - CheckTenantStatus middleware (suspended/expired/archived) - Fail-safe: TenantScope returns 0 rows când tenant nu e rezolvat Auth guards: - 'central' guard cu super_admins provider (panou platform) - 'web' guard cu users provider (per-tenant) Filament panels: - CentralPanelProvider la service.mir.md/admin - TenantPanelProvider la <slug>.service.mir.md/app - CompanyResource (central): CRUD companii cu status badge + filtre - ClientResource (tenant): CRUD clienți cu status, sursă, sold - VehicleResource (tenant): CRUD mașini cu marcă/model/VIN Seed: - 3 plans (free/basic/pro) - super-admin: vasyka.moraru@gmail.com / admin123 - demo company 'psauto' cu admin user admin@psauto.md / admin123 - 3 clienți + 3 mașini preluate din AutoCRM.html Bootstrap: - TrustProxies (Cloudflare→Traefik HTTPS detection) - forceScheme/forceRootUrl când APP_URL e HTTPS - Helper global tenant() în app/helpers.php (autoload via composer) - RUN_SEED env var în entrypoint pentru db:seed condiționat
37 lines
1.3 KiB
Bash
37 lines
1.3 KiB
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
cd /app
|
|
|
|
# Ensure storage subdirs exist
|
|
mkdir -p storage/framework/{cache,sessions,views,testing} storage/logs storage/app/public bootstrap/cache
|
|
chown -R www-data:www-data storage bootstrap/cache 2>/dev/null || true
|
|
|
|
# Run migrations on first boot (idempotent)
|
|
if [ "${RUN_MIGRATIONS:-true}" = "true" ]; then
|
|
echo "[entrypoint] Running migrations..."
|
|
php artisan migrate --force --no-interaction || echo "[entrypoint] migrate failed (non-fatal)"
|
|
fi
|
|
|
|
# Run seeders if requested. Uses firstOrCreate so it's idempotent.
|
|
if [ "${RUN_SEED:-false}" = "true" ]; then
|
|
echo "[entrypoint] Running database seed..."
|
|
php artisan db:seed --force --no-interaction || echo "[entrypoint] seed failed (non-fatal)"
|
|
fi
|
|
|
|
# Production caches
|
|
if [ "${APP_ENV:-production}" = "production" ]; then
|
|
echo "[entrypoint] Caching config/routes/views..."
|
|
php artisan config:cache --no-interaction || true
|
|
php artisan route:cache --no-interaction || true
|
|
php artisan view:cache --no-interaction || true
|
|
php artisan event:cache --no-interaction || true
|
|
php artisan filament:cache-components --no-interaction || true
|
|
fi
|
|
|
|
# Storage symlink (idempotent)
|
|
php artisan storage:link --no-interaction 2>/dev/null || true
|
|
|
|
echo "[entrypoint] Starting: $@"
|
|
exec "$@"
|