feat(rate-limit): add environment variable to disable rate limiting for local testing

This commit is contained in:
Yusuf İpek
2026-03-20 22:32:26 +03:00
parent 14b2809aed
commit f5f96e6f9f
2 changed files with 19 additions and 0 deletions
+3
View File
@@ -59,6 +59,9 @@ SMTP_FROM="[email protected]"
# ============================================================================
# development | production | test
NODE_ENV="development"
# Disable all app-level rate limiting for local testing. Leave unset to keep rate limiting enabled.
# Accepted truthy values: "true", "1", "yes", "on"
# DISABLE_RATE_LIMIT="true"
# Admin emails for accessing the /admin panel (comma separated list)
# e.g., "[email protected],[email protected]"
ADMIN_EMAILS=""