-
Formatting:
-
-
+
-
+
+
+
+
+
+
+
JavaScript Versions:
+
+
+
+
+
+
+
Input JavaScript code version
+
+
+
+
+
+
+
Generated JavaScript code version
+
+
+
diff --git a/src/main/resources/META-INF/resources/openapi.yaml b/src/main/resources/META-INF/resources/openapi.yaml
index df840e2..65be3cb 100644
--- a/src/main/resources/META-INF/resources/openapi.yaml
+++ b/src/main/resources/META-INF/resources/openapi.yaml
@@ -43,6 +43,10 @@ paths:
components:
schemas:
+ LanguageInOut:
+ type: string
+ description: "Language input and output"
+
Formatting:
type: "object"
properties:
@@ -102,3 +106,5 @@ components:
$ref: "#/components/schemas/Formatting"
externalScripts:
$ref: "#/components/schemas/ExternalScripts"
+ language:
+ $ref: "#/components/schemas/LanguageInOut"
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
index 455d526..f021689 100644
--- a/src/main/resources/application.properties
+++ b/src/main/resources/application.properties
@@ -12,9 +12,13 @@ quarkus.http.cors.origins=*
quarkus.http.cors.methods=GET,POST
quarkus.http.cors.headers=Content-Type,Accept
+//quarkus.micrometer.enabled=false
+quarkus.micrometer.binders.jvm.enabled=false
+
server.download-file-max-size=${MAX_DOWNLOAD_FILE_SIZE:1048576}
server.download-urls-pre-request=${MAX_DOWNLOAD_URLS_PER_REQUEST:10}
server.cache-max-size = ${MAX_CACHE_DIR_SIZE:1073741824}
server.cache-location=${CACHE_DIR:cache}
+