1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +00:00

chore: set sas,js as default run times

This commit is contained in:
2022-06-17 04:02:40 +05:00
parent 1790e10fc1
commit 158acf1f97
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ PROTOCOL=[http|https] default considered as http
PRIVATE_KEY=privkey.pem
FULL_CHAIN=fullchain.pem
RUN_TIMES=[sas|js|sas,js|js,sas] default considered as sas
RUN_TIMES=[sas|js|sas,js|js,sas] default considered as sas,js
PORT=[5000] default value is 5000

View File

@@ -237,5 +237,5 @@ const DEFAULTS = {
PORT: '5000',
HELMET_COEP: HelmetCoepType.TRUE,
LOG_FORMAT_MORGAN: LOG_FORMAT_MORGANType.Common,
RUN_TIMES: RunTimeType.SAS
RUN_TIMES: `${RunTimeType.SAS},${RunTimeType.JS}`
}