You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: ✨ Prepare release 0.2.0
Add example how to use constants.*.js, Add example how to implement Hasura Custom Action protector middleware, Add example how to parse cookies, Add ACL to non-public Swagger UI, fix Hlambda List of protected env names
* feat: 🎨 Update Console UI
* docs: 📝 Update CHANGELOG.md
* fix: 📝 Update comment, update CHANGELOG.md
* fix: 🐛 Update ACL to check for access value, and increase expiration time of the Swagger Console UI token.
# Server max allowed body size from client that express app will support. (Main usecase is Apple Subscription Notifications)
35
35
SERVER_BODY_SIZE="2mb"
36
36
37
+
# Constant reference in code: ENV_DISABLE_EXPRESS_BODY_PARSER | Default value: false
38
+
# The Express body parser will be disabled for all routes except the ones required for Console.
39
+
DISABLE_EXPRESS_BODY_PARSER="false"
40
+
41
+
# Constant reference in code: ENV_EXPRESS_BODY_PARSER_INCLUDE_RAW_BODY | Default value: false
42
+
# In all requests you will have req.rawBody buffer available.
43
+
EXPRESS_BODY_PARSER_INCLUDE_RAW_BODY="false"
44
+
45
+
# Constant reference in code: ENV_DISABLE_EXPRESS_COOKIE_PARSER | Default value: false
46
+
# The Express cookie parser will be disabled for all routes except the ones required for Console.
47
+
DISABLE_EXPRESS_COOKIE_PARSER="false"
48
+
37
49
# Constant reference in code: ENV_HLAMBDA_CORS_DOMAIN | Default value: *
38
50
# By default, all CORS requests to the Hlambda server are allowed. To run with more restrictive CORS settings, use this env variable. Example: `https://*.foo.bar.com:8080, http://*.localhost, http://localhost:3000, http://example.com`
0 commit comments