-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
39 lines (30 loc) · 1.17 KB
/
.env.example
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
# Saleor domain where do you want to install the app. It will be used to verify JWT tokens.
SALEOR_URL=https://your.eu.saleor.cloud
# Where your email assets are stored
STATIC_URL=https://your.cdn/
# Required for proper paths generation
STOREFRONT_URL=https://your.storefront.com
# Email from which email will be sent
# Name from which email will be sent
FROM_NAME=Mirumee
# AWS SQS queue url
SQS_QUEUE_URL=http://host.docker.internal:4566/000000000000/nimara-mailer-queue
# Secret manager secret
SECRET_MANAGER_APP_CONFIG_PATH=nimara-mailer
AWS_REGION=ap-southeast-1
# AWS credentials - not needed for localstack
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
# One of: AWS_SES, NODE_MAILER
EMAIL_PROVIDER=NODE_MAILER
# If you want to whitelist specific domains to which the app can send emails - separated by comma.
WHITELISTED_DOMAINS=
# Used in `send-notification` endpoint for authentication if you do not want to use Saleor JWT verification.
AUTHORIZATION_TOKEN=
# Localstack only. When using AWS please comment this out
FROM_DOMAIN=mirumee.com
AWS_ENDPOINT_URL=http://host.docker.internal:4566
# Mailpit only
SMTP_HOST=host.docker.internal
SMTP_PORT=1025