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
Copy file name to clipboardExpand all lines: .env.example
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,18 @@ JSON_STDOUT="false"
14
14
# Sets up logging level: critical, normal, verbose
15
15
LOG_LEVELS="critical,normal,verbose"
16
16
17
+
# Constant reference in code: ENV_LOG_HISTORY_BUFFER_SIZE | Default value: 255
18
+
# Sets up logging history buffer size. It is a max length of the history buffer, every record is the call of log function, that can contain multi-line text. (Default: 255)
19
+
LOG_HISTORY_BUFFER_SIZE="255"
20
+
21
+
# Constant reference in code: ENV_EXPRESS_REQUEST_LOG_HISTORY_BUFFER_SIZE | Default value: 255
22
+
# Sets up logging history buffer size. It is a max length of the history buffer, every record is the record of the request. (Default: 255)
23
+
EXPRESS_REQUEST_LOG_HISTORY_BUFFER_SIZE="255"
24
+
25
+
# Constant reference in code: ENV_ENABLE_REQUEST_HISTORY | Default value: false
26
+
# Enables request history, useful if you want to log the last n requests and be able to replay the request. (Default: false)
27
+
ENABLE_REQUEST_HISTORY="false"
28
+
17
29
# Constant reference in code: ENV_SERVER_PORT | Default value: 1331
It is the implementation of the idea to load your ECMAScript code as configuration (metadata). With Hlambda you can easily create a microservice that can load arbitrary code configuration.
22
+
It is the implementation of the idea to load your ECMAScript code as configuration (metadata). With Hlambda you can easily create a microservice that can load arbitrary code configurations.
23
23
24
24
The main use case was to implement a stateless REST microservice that will run Hasura custom actions in a separate container, containing any custom business logic.
0 commit comments