@dbos-inc/dbos-sdk 1.8.5-preview.g6778b3edea → 1.8.8-preview
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,158 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
3
|
+
"title": "DBOS Config",
|
4
|
+
"type": "object",
|
5
|
+
"additionalProperties": false,
|
6
|
+
"properties": {
|
7
|
+
"database": {
|
8
|
+
"type": "object",
|
9
|
+
"additionalProperties": false,
|
10
|
+
"properties": {
|
11
|
+
"hostname": {
|
12
|
+
"type": "string",
|
13
|
+
"description": "The hostname or IP address of the application database"
|
14
|
+
},
|
15
|
+
"port": {
|
16
|
+
"type": "number",
|
17
|
+
"description": "The port number of the application database"
|
18
|
+
},
|
19
|
+
"username": {
|
20
|
+
"type": "string",
|
21
|
+
"description": "The username to use when connecting to the application database",
|
22
|
+
"not": {
|
23
|
+
"enum": ["dbos"]
|
24
|
+
}
|
25
|
+
},
|
26
|
+
"password": {
|
27
|
+
"type": "string",
|
28
|
+
"description": "The password to use when connecting to the application database. Developers are strongly encouraged to use environment variable substitution to avoid storing secrets in source."
|
29
|
+
},
|
30
|
+
"connectionTimeoutMillis": {
|
31
|
+
"type": "number",
|
32
|
+
"description": "The number of milliseconds the system waits before timing out when connecting to the application database"
|
33
|
+
},
|
34
|
+
"app_db_name": {
|
35
|
+
"type": "string",
|
36
|
+
"description": "The name of the application database"
|
37
|
+
},
|
38
|
+
"sys_db_name": {
|
39
|
+
"type": "string",
|
40
|
+
"description": "The name of the system database"
|
41
|
+
},
|
42
|
+
"ssl": {
|
43
|
+
"type": "boolean",
|
44
|
+
"description": "Use SSL/TLS to securely connect to the database (default: true)"
|
45
|
+
},
|
46
|
+
"ssl_ca": {
|
47
|
+
"type": "string",
|
48
|
+
"description": "If using SSL/TLS to securely connect to a database, path to an SSL root certificate file"
|
49
|
+
},
|
50
|
+
"app_db_client": {
|
51
|
+
"type": "string",
|
52
|
+
"description": "Specify the database client to use to connect to the application database",
|
53
|
+
"enum": [
|
54
|
+
"pg-node",
|
55
|
+
"prisma",
|
56
|
+
"typeorm",
|
57
|
+
"knex"
|
58
|
+
]
|
59
|
+
},
|
60
|
+
"migrate": {
|
61
|
+
"type": "array",
|
62
|
+
"description": "Specify a list of user DB migration commands to run"
|
63
|
+
},
|
64
|
+
"rollback": {
|
65
|
+
"type": "array",
|
66
|
+
"description": "Specify a list of user DB rollback commands to run"
|
67
|
+
}
|
68
|
+
},
|
69
|
+
"required": [
|
70
|
+
"hostname",
|
71
|
+
"port",
|
72
|
+
"username",
|
73
|
+
"password",
|
74
|
+
"app_db_name"
|
75
|
+
]
|
76
|
+
},
|
77
|
+
"telemetry": {
|
78
|
+
"type": "object",
|
79
|
+
"additionalProperties": false,
|
80
|
+
"properties": {
|
81
|
+
"logs": {
|
82
|
+
"type": "object",
|
83
|
+
"additionalProperties": false,
|
84
|
+
"properties": {
|
85
|
+
"addContextMetadata": {
|
86
|
+
"type": "boolean",
|
87
|
+
"description": "Adds contextual information, such as workflow UUID, to each log entry"
|
88
|
+
},
|
89
|
+
"logLevel": {
|
90
|
+
"type": "string",
|
91
|
+
"description": "A filter on what logs should be printed to the standard output"
|
92
|
+
},
|
93
|
+
"silent": {
|
94
|
+
"type": "boolean",
|
95
|
+
"description": "Silences the logger such that nothing is printed to the standard output"
|
96
|
+
}
|
97
|
+
}
|
98
|
+
},
|
99
|
+
"OTLPExporter": {
|
100
|
+
"type": "object",
|
101
|
+
"additionalProperties": false,
|
102
|
+
"properties": {
|
103
|
+
"logsEndpoint": {
|
104
|
+
"type": "string",
|
105
|
+
"description": "The URL of an OTLP collector to which to export logs"
|
106
|
+
},
|
107
|
+
"tracesEndpoint": {
|
108
|
+
"type": "string",
|
109
|
+
"description": "The URL of an OTLP collector to which to export traces"
|
110
|
+
}
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
},
|
115
|
+
"runtimeConfig": {
|
116
|
+
"type": "object",
|
117
|
+
"additionalProperties": false,
|
118
|
+
"properties": {
|
119
|
+
"entrypoints": {
|
120
|
+
"type": "array",
|
121
|
+
"items": {
|
122
|
+
"type": "string"
|
123
|
+
}
|
124
|
+
},
|
125
|
+
"port": {
|
126
|
+
"type": "number"
|
127
|
+
}
|
128
|
+
}
|
129
|
+
},
|
130
|
+
"http": {
|
131
|
+
"type": "object",
|
132
|
+
"additionalProperties": false,
|
133
|
+
"properties": {
|
134
|
+
"cors_middleware": {
|
135
|
+
"type": "boolean"
|
136
|
+
},
|
137
|
+
"credentials": {
|
138
|
+
"type": "boolean"
|
139
|
+
},
|
140
|
+
"allowed_origins": {
|
141
|
+
"type": "array",
|
142
|
+
"items": {
|
143
|
+
"type": "string"
|
144
|
+
}
|
145
|
+
}
|
146
|
+
}
|
147
|
+
},
|
148
|
+
"application": {},
|
149
|
+
"env": {},
|
150
|
+
"dbClientMetadata": {},
|
151
|
+
"version": {
|
152
|
+
"type": "string"
|
153
|
+
}
|
154
|
+
},
|
155
|
+
"required": [
|
156
|
+
"database"
|
157
|
+
]
|
158
|
+
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/dbos-runtime/config.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;AAEhC,OAAO,EAAE,iBAAiB,EAAqB,MAAM,WAAW,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/dbos-runtime/config.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;AAEhC,OAAO,EAAE,iBAAiB,EAAqB,MAAM,WAAW,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAM/C,eAAO,MAAM,kBAAkB,qBAAqB,CAAC;AAKrD,MAAM,WAAW,UAAU;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE;QACR,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,MAAM,CAAC;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,uBAAuB,CAAC,EAAE,MAAM,CAAC;QACjC,WAAW,EAAE,MAAM,CAAC;QACpB,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,GAAG,CAAC,EAAE,OAAO,CAAC;QACd,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,aAAa,CAAC,EAAE,gBAAgB,CAAC;QACjC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;QACnB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;KACrB,CAAC;IACF,IAAI,CAAC,EAAE;QACL,eAAe,CAAC,EAAE,OAAO,CAAC;QAC1B,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;KAC5B,CAAC;IACF,SAAS,CAAC,EAAE,eAAe,CAAC;IAE5B,WAAW,EAAE,GAAG,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC5B,aAAa,CAAC,EAAE,iBAAiB,CAAC;IAElC,gBAAgB,CAAC,EAAE,GAAG,CAAC;CACxB;AAOD,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAKzD;AAED,wBAAgB,cAAc,CAAC,cAAc,EAAE,MAAM,GAAG,UAAU,CAajE;AAED,wBAAgB,eAAe,CAAC,UAAU,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,QAW7E;AAED,wBAAgB,mBAAmB,CAAC,UAAU,EAAE,UAAU,EAAE,QAAQ,GAAE,OAAe,cA8CpF;AAoBD,wBAAgB,eAAe,CAAC,UAAU,CAAC,EAAE,mBAAmB,EAAE,QAAQ,GAAE,OAAe,GAAG,CAAC,UAAU,EAAE,iBAAiB,CAAC,CAqE5H"}
|
@@ -11,7 +11,12 @@ const runtime_1 = require("./runtime");
|
|
11
11
|
const user_database_1 = require("../user_database");
|
12
12
|
const applicationVersion_1 = require("./applicationVersion");
|
13
13
|
const fs_1 = require("fs");
|
14
|
+
const ajv_1 = __importDefault(require("ajv"));
|
15
|
+
const path_1 = __importDefault(require("path"));
|
14
16
|
exports.dbosConfigFilePath = "dbos-config.yaml";
|
17
|
+
const dbosConfigSchemaPath = path_1.default.join((0, utils_1.findPackageRoot)(__dirname), 'dbos-config.schema.json');
|
18
|
+
const dbosConfigSchema = JSON.parse((0, utils_1.readFileSync)(dbosConfigSchemaPath));
|
19
|
+
const ajv = new ajv_1.default({ allErrors: true, verbose: true });
|
15
20
|
/*
|
16
21
|
* Substitute environment variables using a regex for matching.
|
17
22
|
* Will find anything in curly braces.
|
@@ -105,6 +110,20 @@ function constructPoolConfig(configFile, useProxy = false) {
|
|
105
110
|
return poolConfig;
|
106
111
|
}
|
107
112
|
exports.constructPoolConfig = constructPoolConfig;
|
113
|
+
function prettyPrintAjvErrors(validate) {
|
114
|
+
return validate.errors.map(error => {
|
115
|
+
let message = `Error: ${error.message}`;
|
116
|
+
if (error.schemaPath)
|
117
|
+
message += ` (schema path: ${error.schemaPath})`;
|
118
|
+
if (error.params && error.keyword === 'additionalProperties') {
|
119
|
+
message += `; the additional property '${error.params.additionalProperty}' is not allowed`;
|
120
|
+
}
|
121
|
+
if (error.data && error.keyword === 'not') {
|
122
|
+
message += `; the value ${JSON.stringify(error.data)} is not allowed for field ${error.instancePath}`;
|
123
|
+
}
|
124
|
+
return message;
|
125
|
+
}).join(', ');
|
126
|
+
}
|
108
127
|
/*
|
109
128
|
* Parse `dbosConfigFilePath` and return DBOSConfig and DBOSRuntimeConfig
|
110
129
|
* Considers DBOSCLIStartOptions if provided, which takes precedence over config file
|
@@ -115,6 +134,11 @@ function parseConfigFile(cliOptions, useProxy = false) {
|
|
115
134
|
if (!configFile) {
|
116
135
|
throw new error_1.DBOSInitializationError(`DBOS configuration file ${configFilePath} is empty`);
|
117
136
|
}
|
137
|
+
const validator = ajv.compile(dbosConfigSchema);
|
138
|
+
if (!validator(configFile)) {
|
139
|
+
const errorMessages = prettyPrintAjvErrors(validator);
|
140
|
+
throw new error_1.DBOSInitializationError(`dbos-config.yaml failed schema validation. ${errorMessages}`);
|
141
|
+
}
|
118
142
|
(0, applicationVersion_1.setApplicationVersion)(configFile.version);
|
119
143
|
/*******************************/
|
120
144
|
/* Handle user database config */
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/dbos-runtime/config.ts"],"names":[],"mappings":";;;;;;AAAA,oCAAmD;AACnD,
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/dbos-runtime/config.ts"],"names":[],"mappings":"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"}
|