-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.test
More file actions
97 lines (75 loc) · 2.09 KB
/
.env.test
File metadata and controls
97 lines (75 loc) · 2.09 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
SECRET_KEY=insecure-secret-key
LOGIN_CODE_SECRET=insecure-login-secret-key
LOG_LEVEL=DEBUG
APP_ENV=test
PUBLIC_BASE_URL=http://localhost:8087
ADMIN_WEBSITE=https://www.thunderbird.net
ADMIN_CONTACT=dummy@example.org
SUPPORT_CONTACT=dummy@example.org
ALLOWED_HOSTS=testserver
ALLOWED_EMAIL_DOMAINS=example.org,example.com
MIN_CUSTOM_DOMAIN_ALIAS_LENGTH=3
CSRF_SECURE=False
CSRF_HTTPONLY=False
# None value for this field
CSRF_TRUSTED_ORIGINS
USE_ALLOW_LIST=False
# Database
DATABASE_NAME=accounts
DATABASE_USER=accounts
DATABASE_PASSWORD=accounts
DATABASE_HOST=postgres
# Cache
REDIS_URL=redis://redis:6379
REDIS_INTERNAL_DB="0"
REDIS_CELERY_DB
REDIS_CELERY_RESULTS_DB
REDIS_SHARED_DB="10"
# Auth scheme
AUTH_SCHEME=oidc
IMAP_HOST=localhost
IMAP_PORT=993
IMAP_TLS=True
SMTP_HOST=localhost
SMTP_PORT=465
SMTP_TLS=True
JMAP_HOST=localhost
JMAP_PORT=443
JMAP_TLS=True
# MailChimp form URL for Wait List
WAIT_LIST_FORM_ACTION=
# Appointment CalDAV auto-setup secret (needs to match Appointment's APPOINTMENT_CALDAV_SECRET)
APPOINTMENT_CALDAV_SECRET=
SENTRY_DSN=
# Celery
CELERY_BROKER="memory://"
CELERY_BACKEND="cache+memory://"
# We run tests with a local memory db, so we can't use redis here
CELERY_EAGER=False
PADDLE_TOKEN=this-is-mocked
PADDLE_ENV=sandbox
PADDLE_WEBHOOK_KEY=this-is-mocked
PADDLE_API_KEY=this-is-mocked
# Zendesk (contact support form)
ZENDESK_SUBDOMAIN=
ZENDESK_USER_EMAIL=
ZENDESK_API_TOKEN=
ZENDESK_FORM_ID=
# Zendesk form hidden fields (contact support form)
ZENDESK_FORM_BROWSER_FIELD_ID=
ZENDESK_FORM_OS_FIELD_ID=
# This URL should not be called without a mock
STALWART_BASE_JMAP_URL=http://stalwart:8081
STALWART_BASE_API_URL=http://stalwart:8080
STALWART_API_KEY=this-is-mocked
STALWART_API_AUTH_METHOD=basic
# Keycloak's (or another oidc provider) client settings
OIDC_CLIENT_ID=tb-accounts
OIDC_CLIENT_SECRET=
OIDC_SIGN_ALGO=HS256
TB_PRO_APPOINTMENT_URL=https://appointment.tb.pro/
TB_PRO_SEND_URL=https://send.tb.pro/
TB_PRO_WAIT_LIST_URL=https://tb.pro/waitlist/
MAILCHIMP_DC="< intentionally blank >"
MAILCHIMP_API_KEY="< intentionally blank >"
MAILCHIMP_LIST_ID="< intentionally blank >"