Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"resources" : null,
"version" : 1,
"title" : "CSV File",
"connection" : null,
"actions" : [ {
"batch" : null,
"deprecated" : null,
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand All @@ -582,7 +583,7 @@
"type" : "ARRAY",
"defaultValue" : null,
"exampleValue" : null,
"label" : "Rows",
"label" : "Line Structure Definition",
"placeholder" : null,
"items" : [ {
"advancedOption" : null,
Expand Down Expand Up @@ -715,7 +716,7 @@
"options" : null,
"optionsDataSource" : null
} ],
"title" : "Write to File",
"title" : "Write to CSV File",
"perform" : { },
"processErrorResponse" : null,
"workflowNodeDescription" : null
Expand All @@ -732,6 +733,5 @@
}
},
"triggers" : null,
"unifiedApi" : null,
"connection" : null
"unifiedApi" : null
}
Loading