added a help system, replaced the words "tenant" and "Pwa" with better alternatives. corrected and implemented cron jobs. prepared going live on a coolify-powered system.

This commit is contained in:
Codex Agent
2025-11-10 16:23:09 +01:00
parent ba9e64dfcb
commit 447a90a742
123 changed files with 6398 additions and 153 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace Tests\Feature\Console;
use Illuminate\Support\Facades\Storage;
use Tests\TestCase;
class HelpSyncCommandTest extends TestCase
{
public function test_it_builds_help_cache(): void
{
Storage::fake('local');
$this->artisan('help:sync')->assertExitCode(0);
Storage::disk('local')->assertExists('help/guest/en/articles.json');
$payload = json_decode(Storage::disk('local')->get('help/guest/en/articles.json'), true);
$this->assertNotEmpty($payload);
$this->assertContains('getting-started', array_column($payload, 'slug'));
}
}