forked from davidajuan/MassTestingPlatform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.sample.env
62 lines (48 loc) · 1.41 KB
/
.sample.env
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
### This is a committed sample file ###
### Do not commit .env file! ###
APP_ENV=prod
DEBUG_MODE=false
# App specific configurations in json format
APP_CONFIG=
# AWS credentials - can be found when logging onto awsconsole/
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_SESSION_TOKEN=
# Emails will be sent from here
SES_EMAIL_ADDRESS=no-reply@covidtestdetroit.com
SES_EMAIL_NAME=COVID Test Detroit
EMAIL_LOG_LEVEL=0
# Health Network SMTPS credentials
HEALTH_NETWORK_USER_NAME=
HEALTH_NETWORK_USER_PWD=
HEALTH_NETWORK_MAIL_FROM=
HEALTH_NETWORK_MAIL_TO=
HEALTH_NETWORK_SMTP_URL=
HEALTH_NETWORK_SMTP_PORT=
# SFTP login credentials to transmit CSVs
PRINT_SFTP_HOST=
PRINT_SFTP_USERNAME=
PRINT_SFTP_PASSWORD=
# NeverBounce: 3rd party email validation service
NEVERBOUNCE_API_KEY=
# Google Maps API
GOOGLE_MAPS_API_KEY=
# Webhook to send metrics data on created appointments
METRICS_WEBHOOK_URL=
## LEAVE EVERYTHING ALONE UNDER THIS LINE #######
#################################################
DB_USERNAME=easyapp
DB_NAME=easyapp
# before deploying to production change to harder password, and don't commit it to git
DB_PASSWORD=veryhardpassword
# change to your installation address
APP_URL=localhost
APP_HOST=0.0.0.0
APP_PORT=80
# email settings - set to 'smtp' and provide SMTP settings if you want to send emails
EMAIL_PROTOCOL=mail
SMTP_HOST=smtp.gmail.com
SMTP_USER=user
SMTP_PASS=password
SMTP_CRYPTO=ssl
SMTP_PORT=25