Reapply "Add Turnstile captcha to login"

This reverts commit a7c732e139.
This commit is contained in:
Cauê Faleiros
2026-07-28 12:42:27 -03:00
parent a7c732e139
commit 252c2447a8
9 changed files with 198 additions and 15 deletions

View File

@@ -7,5 +7,6 @@ module.exports = {
ADMIN_PASSWORD: process.env.ADMIN_PASSWORD || 'admin123',
JWT_SECRET: process.env.JWT_SECRET || 'super_secret_jwt_key_123',
DATABASE_URL: process.env.DATABASE_URL || 'postgres://graphuser:graphpassword@localhost:5432/graphdb',
N8N_WHATSAPP_TRIGGER_URL: process.env.N8N_WHATSAPP_TRIGGER_URL || 'http://localhost:5678/webhook/whatsapp'
N8N_WHATSAPP_TRIGGER_URL: process.env.N8N_WHATSAPP_TRIGGER_URL || 'http://localhost:5678/webhook/whatsapp',
TURNSTILE_SECRET_KEY: process.env.TURNSTILE_SECRET_KEY || ''
};