-
Notifications
You must be signed in to change notification settings - Fork 1
/
local.env.dist
62 lines (42 loc) · 1.13 KB
/
local.env.dist
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
### Required ENV vars ###
MYSQL_ROOT_PASSWORD=
MYSQL_HOST=
MYSQL_DATABASE=
MYSQL_USER=
MYSQL_PASSWORD=
# format is comma-separated tokens (no-space), e.g., test-cli-abc123,consumer-id-def456,something-unique-ghi789
# Must be "abc123" for tests to pass.
API_ACCESS_KEYS=abc123
# name used in email alert subject
APP_NAME=email-service
# === AWS AppConfig (optional) ===
# The AWS region in use
#AWS_REGION=
# The AppConfig Application ID (or name)
#APP_ID=
# The AppConfig Configuration Profile ID (or name)
#CONFIG_ID=
# The AppConfig Environment ID (or name)
#ENV_ID=
# mailer configuration for SMTP
MAILER_HOST=
MAILER_USERNAME=
MAILER_PASSWORD=
# mailer configuration for SES; MAILER_HOST must be empty
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_REGION=
# email address to use for error alerts
NOTIFICATION_EMAIL=
# email address to send from
FROM_EMAIL=
### Optional ENV vars ###
EMAIL_BRAND_COLOR=
EMAIL_BRAND_LOGO=
# name to use in the email FROM header
FROM_NAME=
# [prod|dev|test], app defaults to prod
APP_ENV=
MAILER_USEFILES=
EMAIL_QUEUE_BATCH_SIZE=10
COMPOSER_AUTH={"github-oauth":{"github.com":"insert-token-here"}}