create-mercato-app 0.5.1-develop.2856.35de414092 → 0.5.1-develop.2860.07af3a6a9d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template/.env.example +7 -0
package/package.json
CHANGED
package/template/.env.example
CHANGED
|
@@ -107,6 +107,13 @@ NEXT_PUBLIC_OM_EXAMPLE_CHECKOUT_TEST_INJECTIONS_ENABLED=false
|
|
|
107
107
|
# Node environment
|
|
108
108
|
NODE_ENV=development
|
|
109
109
|
|
|
110
|
+
# Rate limiting is enabled by default. Auth endpoints (login/signup/reset)
|
|
111
|
+
# cap at 5–20 requests/minute which is normally fine in dev, but can bite
|
|
112
|
+
# when running integration tests against a long-lived dev server. Set
|
|
113
|
+
# OM_INTEGRATION_TEST=true to disable rate limiting globally for test runs.
|
|
114
|
+
# See: apps/docs/docs/framework/security/rate-limiting.mdx
|
|
115
|
+
# OM_INTEGRATION_TEST=false
|
|
116
|
+
|
|
110
117
|
# Auto-spawn workers when starting the app (default: true)
|
|
111
118
|
# Set to false to run workers separately in production
|
|
112
119
|
AUTO_SPAWN_WORKERS=true
|