-
Notifications
You must be signed in to change notification settings - Fork 13
/
.env.default
42 lines (40 loc) · 2.04 KB
/
.env.default
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
# 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
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_BRAINSTORMING_TEASER=true
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="
# 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