-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (24 loc) · 881 Bytes
/
.env.example
File metadata and controls
34 lines (24 loc) · 881 Bytes
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
# The environment Craft is currently running in ('dev', 'staging', 'production', etc.)
ENVIRONMENT="dev"
# The secure key Craft will use for hashing and encrypting data
SECURITY_KEY=""
# The database driver that will be used ('mysql' or 'pgsql')
DB_DRIVER="mysql"
# The database server name or IP address (usually this is 'localhost' or '127.0.0.1')
DB_SERVER="db"
# The database username to connect with
DB_USER="user"
# The database password to connect with
DB_PASSWORD="user"
# The name of the database to select
DB_DATABASE="default"
# The email address Craft CMS will use when sending email.
SYSTEM_EMAIL_ADDRESS="development@batch.nz"
# The “From” name Craft CMS will use when sending email.
SENDER_NAME="Batch"
# The template Craft CMS will use for HTML emails
HTML_EMAIL_TEMPLATE=""
# Mailgun Settings
MAILGUN_API_KEY=""
MAILGUN_DOMAIN=""
MAILGUN_ENDPOINT=""