-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathci.yml
More file actions
41 lines (41 loc) · 1016 Bytes
/
ci.yml
File metadata and controls
41 lines (41 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
schemaVersion: v0.2
prepare:
steps:
- name: install Node.js 24
command: nix-env -iA nixpkgs.nodejs_24
- name: install Ollama
command: nix-env -iA nixpkgs.ollama nixpkgs.process-compose
- name: install dependencies
command: npm install
test:
steps: []
run:
n8n-frontend:
steps:
- name: n8n start
command: N8N_USER_FOLDER=/home/user/app/ N8N_PROTOCOL=http N8N_PORT=3000
N8N_HOST=ws-server-$WORKSPACE_ID-n8n-frontend.workspaces.svc.cluster.local
./node_modules/n8n/bin/n8n start
plan: 8
replicas: 1
network:
ports:
- port: 3000
isPublic: false
paths:
- port: 3000
path: /
stripPath: false
ollama-service:
steps:
- command: process-compose -t=False -f process-compose.models.yaml
plan: 9
replicas: 1
network:
ports:
- port: 3000
isPublic: false
paths:
- port: 3000
path: /model
stripPath: true