-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (29 loc) · 988 Bytes
/
.env.example
File metadata and controls
35 lines (29 loc) · 988 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
# Local-dev only. On Render, render.yaml wires DATABASE_* from the managed
# Postgres instance and generates the secret keys for you. Copy this to .env
# and fill in real values to run the flowiseai/flowise image locally.
PORT=3000
DATABASE_TYPE=postgres
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_NAME=flowise
DATABASE_USER=flowise
DATABASE_PASSWORD=changeme
DATABASE_SSL=false
# DATABASE_REJECT_UNAUTHORIZED is intentionally not set.
# It only takes effect when DATABASE_SSL_KEY_BASE64 is also supplied.
# When DATABASE_SSL=true without a CA bundle, Flowise hard-codes strict
# cert verification regardless of this var.
# Generate locally with: openssl rand -hex 32
FLOWISE_SECRETKEY_OVERWRITE=
JWT_AUTH_TOKEN_SECRET=
JWT_REFRESH_TOKEN_SECRET=
EXPRESS_SESSION_SECRET=
TOKEN_HASH_SECRET=
LOG_PATH=./.flowise/logs
LOG_LEVEL=info
STORAGE_TYPE=local
BLOB_STORAGE_PATH=./.flowise/storage
NUMBER_OF_PROXIES=1
TRUST_PROXY=true
SECURE_COOKIES=true
DISABLE_FLOWISE_TELEMETRY=true