-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
94 lines (86 loc) · 3.04 KB
/
render.yaml
File metadata and controls
94 lines (86 loc) · 3.04 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# yaml-language-server: $schema=https://render.com/schema/render.yaml.json
previews:
generation: off
projects:
- name: flowise-render-template-postgres
environments:
- name: production
services:
- type: web
name: flowise
runtime: image
plan: standard
region: oregon
image:
url: docker.io/flowiseai/flowise:latest
healthCheckPath: /api/v1/ping
disk:
name: flowise-uploads
mountPath: /root/.flowise
sizeGB: 2
envVars:
- key: PORT
value: "3000"
- key: DATABASE_TYPE
value: postgres
- key: DATABASE_HOST
fromDatabase:
name: flowise-db
property: host
- key: DATABASE_PORT
fromDatabase:
name: flowise-db
property: port
- key: DATABASE_NAME
fromDatabase:
name: flowise-db
property: database
- key: DATABASE_USER
fromDatabase:
name: flowise-db
property: user
- key: DATABASE_PASSWORD
fromDatabase:
name: flowise-db
property: password
# Render's internal Postgres connection (the one fromDatabase
# wires up) does not require TLS — traffic stays on the
# private network. We disable TLS in Flowise's client because
# Flowise's DataSource.ts hard-codes strict cert verification
# whenever DATABASE_SSL=true without a CA cert (see
# packages/server/src/DataSource.ts::getDatabaseSSLFromEnv),
# so DATABASE_REJECT_UNAUTHORIZED=false alone would not work.
- key: DATABASE_SSL
value: "false"
- key: FLOWISE_SECRETKEY_OVERWRITE
generateValue: true
- key: JWT_AUTH_TOKEN_SECRET
generateValue: true
- key: JWT_REFRESH_TOKEN_SECRET
generateValue: true
- key: EXPRESS_SESSION_SECRET
generateValue: true
- key: TOKEN_HASH_SECRET
generateValue: true
- key: LOG_PATH
value: /root/.flowise/logs
- key: LOG_LEVEL
value: info
- key: STORAGE_TYPE
value: local
- key: BLOB_STORAGE_PATH
value: /root/.flowise/storage
- key: NUMBER_OF_PROXIES
value: "1"
- key: TRUST_PROXY
value: "true"
- key: SECURE_COOKIES
value: "true"
- key: DISABLE_FLOWISE_TELEMETRY
value: "true"
databases:
- name: flowise-db
plan: basic-256mb
region: oregon
databaseName: flowise
user: flowise