Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

scale n8n in queue mode #1

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ yarn-error.log
# CDK asset staging directory
.cdk.staging
cdk.out
n8n.yaml
2 changes: 1 addition & 1 deletion bin/n8n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ import * as cdk from 'aws-cdk-lib'
import { N8NStack } from '../lib/n8n-stack'

const app = new cdk.App()
new N8NStack(app, 'N8N')
new N8NStack(app, 'N8N', {})
1 change: 1 addition & 0 deletions cdk.context.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
1 change: 1 addition & 0 deletions cdk.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"app": "npx ts-node --prefer-ts-exts bin/n8n.ts",
"versionReporting": false,
"watch": {
"include": [
"**"
Expand Down
Loading