This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
forked from n8n-io/n8n
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from n8n-io/master
Rebasing to latest n8n branch
- Loading branch information
Showing
7,745 changed files
with
892,542 additions
and
348,327 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,24 @@ | ||
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_POSTGRESDB_HOST: postgres | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
**/*.md | ||
**/.env | ||
.cache | ||
assets | ||
node_modules | ||
packages/*/node_modules | ||
packages/*/dist | ||
packages/node-dev | ||
packages/**/node_modules | ||
packages/**/dist | ||
packages/**/.turbo | ||
packages/**/*.test.* | ||
.git | ||
.github | ||
!.github/scripts | ||
*.tsbuildinfo | ||
packages/cli/dist/**/e2e.* | ||
docker/compose | ||
docker/**/Dockerfile | ||
.vscode | ||
cypress |
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 |
---|---|---|
|
@@ -15,3 +15,6 @@ indent_size = 2 | |
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.ts] | ||
quote_type = single |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.