-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ado-2234-transparent-top-menu-in-cloud
* master: feat: Initial Dev Containers setup (no-changelog) (#8951) feat: Add support for dark mode node icons and colors (#9412) fix(Gotify Node): Fix issue with self signed certificates not working (#9647) refactor(core): Support writing tests in `cli/src` (no-changelog) (#9646) fix(n8n Form Trigger Node): Error if Respond to Webhook and respond node not in workflow (#9641)
- Loading branch information
Showing
305 changed files
with
1,531 additions
and
523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM n8nio/base:20 | ||
|
||
RUN apk add --no-cache --update openssh sudo shadow bash | ||
RUN echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node && chmod 0440 /etc/sudoers.d/node | ||
RUN mkdir /workspaces && chown node:node /workspaces | ||
USER node | ||
RUN mkdir -p ~/.pnpm-store && pnpm config set store-dir ~/.pnpm-store --global |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "n8n", | ||
"dockerComposeFile": "docker-compose.yml", | ||
"service": "n8n", | ||
"workspaceFolder": "/workspaces", | ||
"mounts": [ | ||
"type=bind,source=${localWorkspaceFolder},target=/workspaces,consistency=cached", | ||
"type=bind,source=${localEnv:HOME}/.ssh,target=/home/node/.ssh,consistency=cached", | ||
"type=bind,source=${localEnv:HOME}/.n8n,target=/home/node/.n8n,consistency=cached" | ||
], | ||
"forwardPorts": [8080, 5678], | ||
"postCreateCommand": "corepack prepare --activate && pnpm install ", | ||
"postAttachCommand": "pnpm build", | ||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["CONTRIBUTING.md"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
volumes: | ||
postgres-data: | ||
|
||
services: | ||
postgres: | ||
image: postgres:16-alpine | ||
restart: unless-stopped | ||
volumes: | ||
- postgres-data:/var/lib/postgresql/data | ||
environment: | ||
- POSTGRES_DB=n8n | ||
- POSTGRES_PASSWORD=password | ||
|
||
n8n: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
volumes: | ||
- ..:/workspaces:cached | ||
command: sleep infinity | ||
environment: | ||
DB_TYPE: postgresdb | ||
DB_POSTGRESDB_PASSWORD: password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".", | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
packages/@n8n/nodes-langchain/nodes/embeddings/EmbeddingsOpenAI/openAi.svg
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
...ges/@n8n/nodes-langchain/nodes/embeddings/EmbeddingsOpenAI/openAiLight.dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
packages/@n8n/nodes-langchain/nodes/embeddings/EmbeddingsOpenAI/openAiLight.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
packages/@n8n/nodes-langchain/nodes/llms/LMChatOpenAi/openAi.svg
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
packages/@n8n/nodes-langchain/nodes/llms/LMChatOpenAi/openAiLight.dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
packages/@n8n/nodes-langchain/nodes/llms/LMChatOpenAi/openAiLight.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.