-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy path.env
More file actions
59 lines (48 loc) · 1.5 KB
/
.env
File metadata and controls
59 lines (48 loc) · 1.5 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
## Logging
# https://www.elastic.co/guide/en/elastic-stack/7.14/overview.html
ELK_VERSION=7.14.1
ELASTIC_URL=http://localhost:9200
## VRT version
VRT_UI_VERSION=5.1.2
VRT_API_VERSION=5.1.1
VRT_MIGRATION_VERSION=5.1.0
## Frontend
# direct URL to backend with port (same as APP_PORT)
REACT_APP_API_URL=http://localhost:4200
# frontend port
PORT=8080
## Backend
# direct URL to frontend with port (same as PORT)
APP_FRONTEND_URL=http://localhost:8080
# backend port
APP_PORT=4200
# Uncomment and update below section, if you want to use AWS image storage
#STATIC_SERVICE=s3
#AWS_ACCESS_KEY_ID=
#AWS_SECRET_ACCESS_KEY=
#AWS_REGION=
#AWS_S3_BUCKET_NAME=
# Uncomment and update below section, if you want to use LDAP
#LDAP_ENABLED=true
#LDAP_TLS_NO_VERIFY=false
#LDAP_URL='ldaps://ldap.example.com:636/'
#LDAP_BIND_USER='CN=searchuser,OU=systemaccounts,DC=example,DC=com'
#LDAP_BIND_PASSWORD='searchuserpassword'
#LDAP_SEARCH_DN='OU=users,DC=example,DC=com'
#LDAP_USERS_SEARCH_FILTER='(&(objectClass=Person)(objectCategory=Person)(|(mail={{email}})(sAMAccountName={{email}})))'
#LDAP_ATTRIBUTE_LAST_NAME='sn'
#LDAP_ATTRIBUTE_FIRST_NAME='givenName'
#LDAP_ATTRIBUTE_MAIL='mail'
# Uncomment and update below section, if you want to use VLM
OLLAMA_BASE_URL=http://host.docker.internal:11434
# seed to generate JWT
JWT_SECRET='jwtPrivateKey'
# user session lifetime
JWT_LIFE_TIME=1d
# max image size to upload
BODY_PARSER_JSON_LIMIT="5mb"
## DB
POSTGRES_PORT=5432
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=vrt_db