forked from b310-digital/mindwendel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.default
More file actions
60 lines (54 loc) · 2.63 KB
/
.env.default
File metadata and controls
60 lines (54 loc) · 2.63 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
# Please copy and rename this file.
#
# !Attention!
# Always ensure to load the env variables in every terminal session.
# Otherwise the env variables will not be available
DEV_BUILD_CONTEXT=
DOCKER_COMPOSE_APP_DATABASE_HOST=postgres
DOCKER_COMPOSE_APP_DATABASE_NAME=mindwendel-dev
DOCKER_COMPOSE_APP_DATABASE_SSL=false
DOCKER_COMPOSE_APP_DATABASE_USER_PASSWORD=mindwendel-user-password
DOCKER_COMPOSE_APP_DATABASE_USER=mindwendel-user
DOCKER_COMPOSE_APP_MW_DEFAULT_LOCALE=en
DOCKER_COMPOSE_APP_MW_FEATURE_BRAINSTORMING_REMOVAL_AFTER_DAYS=30
DOCKER_COMPOSE_APP_MW_FEATURE_STORAGE_PROVIDER=local
DOCKER_COMPOSE_APP_MW_FEATURE_IDEA_FILE_UPLOAD=true
DOCKER_COMPOSE_APP_OBJECT_STORAGE_USER=
DOCKER_COMPOSE_APP_OBJECT_STORAGE_PASSWORD=
# This is an example key. Do not use in production!
# please generate a secure key before, e.g. by using the elixir console inside the container:
# iex
# iex> 32 |> :crypto.strong_rand_bytes() |> Base.encode64()
DOCKER_COMPOSE_APP_VAULT_ENCRYPTION_KEY_BASE64="gI6L07o3RTppqy+cfAxO4C8G8psYHWn2NYPbUymYI1o="
# AI Integration is disabled by default:
DOCKER_COMPOSE_APP_MW_AI_ENABLED=false
# openai_compatible | openai
DOCKER_COMPOSE_APP_MW_AI_PROVIDER=openai
DOCKER_COMPOSE_APP_MW_AI_MODEL=gpt-4o-mini
DOCKER_COMPOSE_APP_MW_AI_API_KEY=
DOCKER_COMPOSE_APP_MW_AI_API_BASE_URL=
# Token Limits and Tracking
DOCKER_COMPOSE_APP_MW_AI_TOKEN_LIMIT_DAILY=1000000
DOCKER_COMPOSE_APP_MW_AI_TOKEN_LIMIT_HOURLY=100000
# Hour in UTC (0-23) when daily token limits reset. Default: 0 (midnight UTC)
DOCKER_COMPOSE_APP_MW_AI_TOKEN_RESET_HOUR=0
# Request timeout for AI API calls in milliseconds. Default: 60000 (60 seconds)
DOCKER_COMPOSE_APP_MW_AI_REQUEST_TIMEOUT=60000
# This is an example secret key base that can be use in development
# NOTE: There are multiple commands you can use to generate a secret key base. Pick one command you like, e.g. `date +%s | sha256sum | base64 | head -c 64 ; echo`
# !!ATTENTION: DO NOT USE THIS FOR PRODUCTION!!
DOCKER_COMPOSE_APP_SECRET_KEY_BASE=NDliN2UzNjAzMTlmMWIxODZhNzRjMDIzMDY2OTQ5N2Q4NGU3MjUxZjM0YmI0ZGY1
DOCKER_COMPOSE_APP_TEST_DATABASE_HOST=postgres
DOCKER_COMPOSE_APP_TEST_DATABASE_NAME=mindwendel-test
DOCKER_COMPOSE_APP_TEST_DATABASE_USER_PASSWORD=mindwendel-user-password
DOCKER_COMPOSE_APP_TEST_DATABASE_USER=mindwendel-user
DOCKER_COMPOSE_APP_URL_HOST=localhost
DOCKER_COMPOSE_APP_URL_PORT=4000
DOCKER_COMPOSE_APP_URL_SCHEME=http
DOCKER_COMPOSE_APP_PORT_PUBLISHED=4000
DOCKER_COMPOSE_APP_PORT_TARGET=4000
DOCKER_COMPOSE_POSTGRES_DB=mindwendel-dev
DOCKER_COMPOSE_POSTGRES_PASSWORD=mindwendel-user-password
DOCKER_COMPOSE_POSTGRES_PORT=5432
DOCKER_COMPOSE_POSTGRES_PORT_PUBLISHED=5432
DOCKER_COMPOSE_POSTGRES_USER=mindwendel-user