-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenv.docker_default.local
executable file
·63 lines (53 loc) · 1.51 KB
/
env.docker_default.local
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
# Config for postgres container
# ###########################
# Avoid a log error when starting the itou_postgres container:
# > Role "root" does not exist.
# Without this variable, the default Unix account ('root')
# is used automatically when starting postgres.
# https://www.postgresql.org/docs/current/libpq-envars.html
PGUSER=postgres
# PostgreSQL - for db/user creation
POSTGRES_DB=lemarche
POSTGRES_USER=lemarche_user
POSTGRES_PASSWORD=lemarche_password # ggignore
POSTGRES_HOST=db
# Config for app container with the same variable names as the production
# ###########################
# PostgreSQL
POSTGRESQL_ADDON_HOST=db
POSTGRESQL_ADDON_DB=lemarche
POSTGRESQL_ADDON_USER=lemarche_user
POSTGRESQL_ADDON_PASSWORD=lemarche_password ##ggignore
POSTGRESQL_ADDON_PORT=5432
# Django
DJANGO_SETTINGS_MODULE=config.settings.dev
ENV=dev
DEBUG=True
SECRET_KEY=[YOUR_SECRET]
TRACKER_HOST=localhost
# Mailjet / Anymail
# no need in local, emails will be printed to the console (console.EmailBackend)
# MAILJET_API_KEY=
# MAILJET_API_SECRET=
# MAILJET_WEBHOOK_SECRET=
# Mailjet api to add contact in contact list
MAILJET_MASTER_API_KEY=
MAILJET_MASTER_API_SECRET=
# ID of buyers contact list
MAILJET_NEWSLETTER_CONTACT_LIST_BUYER_ID=
# MTCAPTCHA
MTCAPTCHA_PRIVATE_KEY=
MTCAPTCHA_PUBLIC_KEY=
# OPENAI
OPENAI_ORG=
OPENAI_API_BASE=
OPENAI_API_BASE=
OPENAI_MODEL=
# ELASTICSEARCH
ELASTICSEARCH_HOST=
ELASTICSEARCH_USERNAME=
ELASTICSEARCH_PASSWORD=
ELASTICSEARCH_INDEX_SIAES=
ELASTICSEARCH_MIN_SCORE=0.9
# DATACUBE API
DATACUBE_API_TOKEN=