fix(prod): production hardening for launch #194

Open
chihlasm wants to merge 2 commits from fix/production-hardening into main
Showing only changes of commit 63e5881972 - Show all commits

View File

@@ -31,6 +31,9 @@ export default defineConfig({
env: {
...process.env,
DEBUG: process.env.PLAYWRIGHT_DEBUG || 'true',
// e2e logs in dozens of times per run from one IP — the per-minute
// auth limits would 429 every spec after the first few.
RATE_LIMIT_ENABLED: 'false',
SECRET_KEY: process.env.PLAYWRIGHT_SECRET_KEY || 'playwright-test-secret-key',
DATABASE_URL: backendDatabaseUrl,
DATABASE_URL_SYNC: backendDatabaseUrlSync,