diff --git a/README.md b/README.md index 517cdacac94..3a2fabe6864 100644 --- a/README.md +++ b/README.md @@ -88,14 +88,12 @@ NOTE: `-v` mount option is not mandatory. It mounts local DB storage to make eas ##### Start ByteChef Docker Container ```bashTaskHandler docker run --name bytechef -it -p 8080:8080 \ - --env SERVER_PORT=8080 \ - --env SPRING_PROFILES_ACTIVE=prod \ --env BYTECHEF_DATASOURCE_URL=jdbc:postgresql://postgres:5432/bytechef \ --env BYTECHEF_DATASOURCE_USERNAME=postgres \ --env BYTECHEF_DATASOURCE_PASSWORD=postgres \ --env BYTECHEF_SECURITY_REMEMBER_ME_KEY=e48612ba1fd46fa7089fe9f5085d8d164b53ffb2 \ --network bytechef_network \ - bytechef/bytechef:latest + docker.bytechef.io/bytechef/bytechef:latest ``` NOTE: `-it` (interactive) flag may be replaced with `-d` (detached). Keep it interactive if you want to track logs which can be handy for troubleshooting. Use `-p 8080:8080` to customize port. diff --git a/docker-compose.yml b/docker-compose.yml index 117fd6c7e52..3f7b784c9b1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,7 +18,7 @@ services: # retries: 5 bytechef: container_name: bytechef - image: bytechef/bytechef:latest + image: docker.bytechef.io/bytechef/bytechef:latest depends_on: postgres: condition: service_started diff --git a/server/apps/server-app/src/main/resources/config/application.yml b/server/apps/server-app/src/main/resources/config/application.yml index 61c4075452d..0da952799ea 100644 --- a/server/apps/server-app/src/main/resources/config/application.yml +++ b/server/apps/server-app/src/main/resources/config/application.yml @@ -231,7 +231,7 @@ bytechef: resources: web: file:///opt/bytechef/client/ security: - content-security-policy: "default-src 'self'; frame-src 'self' https://*.command.ai data:; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://*.command.ai https://api.commandbar.com https://cdn.jsdelivr.net https://storage.googleapis.com; style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://*.command.ai; img-src 'self' https://*.command.ai data:; font-src 'self' data:; media-src 'self' https://*.command.ai; connect-src 'self' https://*.command.ai https://eu.i.posthog.com;" + content-security-policy: "default-src 'self'; frame-src 'self' https://*.command.ai data:; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://*.command.ai https://*.commandbar.com https://*.i.posthog.com https://cdn.jsdelivr.net https://storage.googleapis.com; style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://*.command.ai; img-src 'self' https://*.command.ai data:; font-src 'self' data:; media-src 'self' https://*.command.ai; connect-src 'self' https://*.command.ai https://*.i.posthog.com;" sign-up: temp-domain-list-url: #https://gist.githubusercontent.com/SimonHoiberg/f5a23b1fa3762330c8af1e9090918b63/raw/53963d0dbdd93c594fbc067cee95966156ee066b/temp-email-list.txt diff --git a/server/libs/modules/components/csv-file/src/main/java/com/bytechef/component/csv/file/action/CsvFileWriteAction.java b/server/libs/modules/components/csv-file/src/main/java/com/bytechef/component/csv/file/action/CsvFileWriteAction.java index 4a7c24c114e..906ae35e541 100644 --- a/server/libs/modules/components/csv-file/src/main/java/com/bytechef/component/csv/file/action/CsvFileWriteAction.java +++ b/server/libs/modules/components/csv-file/src/main/java/com/bytechef/component/csv/file/action/CsvFileWriteAction.java @@ -50,12 +50,14 @@ public class CsvFileWriteAction { public static final ModifiableActionDefinition ACTION_DEFINITION = action("write") - .title("Write to File") - .description("Writes the data to a csv file.") + .title("Write to CSV File") + .description( + "Writes the data records into a CSV file. Record values are assembled into line and separated with arbitrary character, mostly comma. CSV may or may not define header line.") .properties( array(ROWS) - .label("Rows") - .description("The array of objects to write to the file.") + .label("Line Structure Definition") + .description( + "Define a sequence of fields that will form a line. The values for these fields will consistently repeat in the same order defined here across all lines.") .required(true) .items( object() diff --git a/server/libs/modules/components/csv-file/src/test/resources/definition/csv-file_v1.json b/server/libs/modules/components/csv-file/src/test/resources/definition/csv-file_v1.json index c69a696721f..90612532eae 100644 --- a/server/libs/modules/components/csv-file/src/test/resources/definition/csv-file_v1.json +++ b/server/libs/modules/components/csv-file/src/test/resources/definition/csv-file_v1.json @@ -13,6 +13,7 @@ "resources" : null, "version" : 1, "title" : "CSV File", + "connection" : null, "actions" : [ { "batch" : null, "deprecated" : null, @@ -365,7 +366,7 @@ }, { "batch" : null, "deprecated" : null, - "description" : "Writes the data to a csv file.", + "description" : "Writes the data records into a CSV file. Record values are assembled into line and separated with arbitrary character, mostly comma. CSV may or may not define header line.", "help" : null, "metadata" : null, "name" : "write", @@ -572,7 +573,7 @@ }, "properties" : [ { "advancedOption" : null, - "description" : "The array of objects to write to the file.", + "description" : "Define a sequence of fields that will form a line. The values for these fields will consistently repeat in the same order defined here across all lines.", "displayCondition" : null, "expressionEnabled" : null, "hidden" : null, @@ -582,7 +583,7 @@ "type" : "ARRAY", "defaultValue" : null, "exampleValue" : null, - "label" : "Rows", + "label" : "Line Structure Definition", "placeholder" : null, "items" : [ { "advancedOption" : null, @@ -715,7 +716,7 @@ "options" : null, "optionsDataSource" : null } ], - "title" : "Write to File", + "title" : "Write to CSV File", "perform" : { }, "processErrorResponse" : null, "workflowNodeDescription" : null @@ -732,6 +733,5 @@ } }, "triggers" : null, - "unifiedApi" : null, - "connection" : null + "unifiedApi" : null } \ No newline at end of file