- ApiSandboxController: reduce scan() returns from 4 to 3 via ternary - ApiDocController: add MIME_JSON constant, extract buildInsomniaRequest() and buildInsomniaBody() to reduce cognitive complexity - Store sessions in Redis to fix SSO disconnect with 2 PHP replicas (round-robin load balancing caused session loss on filesystem storage) - Configure session cookie: 24h lifetime, secure auto, samesite lax - Replace Caddy analytics proxies (/stats/*, /assets/perf.js, /sperf) with direct URLs to tools-security.esy-web.dev and cloudflareinsights.com - Update JS tests for new direct analytics URLs Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
672 B
Plaintext
18 lines
672 B
Plaintext
# define your env variables for the test env here
|
|
KERNEL_CLASS='App\Kernel'
|
|
APP_SECRET='$ecretf0rt3st'
|
|
DATABASE_URL="postgresql://app:secret@database:5432/e_ticket?serverVersion=16&charset=utf8"
|
|
MEILISEARCH_URL=http://meilisearch:7700
|
|
MEILISEARCH_API_KEY=e_ticket
|
|
SONARQUBE_URL=https://sn.esy-web.dev
|
|
SONARQUBE_BADGE_TOKEN=test
|
|
SONARQUBE_PROJECT_KEY=e-ticket
|
|
STRIPE_SK=sk_test_fake
|
|
STRIPE_WEBHOOK_SECRET=whsec_test
|
|
STRIPE_WEBHOOK_SECRET_CONNECT=whsec_test_connect
|
|
OUTSIDE_URL=https://test.example.com
|
|
MESSENGER_TRANSPORT_DSN=redis://:e_ticket@redis:6379/messages
|
|
SESSION_HANDLER_DSN=redis://:e_ticket@redis:6379/sessions
|
|
SMIME_PASSPHRASE=test
|
|
ADMIN_EMAIL=contact@test.com
|