Skip to content

Commit ef77e39

Browse files
committed
add n8n service
1 parent a22f81b commit ef77e39

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

n8n/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# n8n on Fly.io
2+
3+
[n8n](https://github.com/n8n-io/n8n) is a workflow automation platform that gives technical teams the flexibility of code with the speed of no-code. With 400+ integrations, native AI capabilities, and a fair-code license, n8n lets you build powerful automations while maintaining full control over your data and deployments.

n8n/fly.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# app = 'n8n'
2+
primary_region = 'sjc'
3+
4+
[build]
5+
image = 'docker.n8n.io/n8nio/n8n'
6+
7+
[[mounts]]
8+
source = 'n8n_data'
9+
destination = '/home/node/.n8n'
10+
initial_size = '1g'
11+
12+
[http_service]
13+
internal_port = 5678
14+
force_https = true
15+
auto_stop_machines = 'stop'
16+
auto_start_machines = true
17+
min_machines_running = 0
18+
19+
[[vm]]
20+
memory = '512mb'
21+
cpus = 1

0 commit comments

Comments
 (0)