forked from statikbe/craft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
35 lines (24 loc) · 901 Bytes
/
.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
# 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 Data Source Name (“DSN”) that tells Craft how to connect to the database
DB_DSN=""
# The database username to connect with
DB_USER="root"
# The database password to connect with
DB_PASSWORD=""
# The database schema that will be used (PostgreSQL only)
DB_SCHEMA="public"
# The prefix that should be added to generated table names (only necessary if multiple things are sharing the same database)
DB_TABLE_PREFIX=""
# General system name
SYSTEM_NAME="Craft"
# Setting to control allowAdminChanges on live & staging
ALLOW_ADMIN_CHANGES=1
# postmarkapp.com API key
POSTMARK_API_KEY=""
# Address to which Craft's testToEmailAddress will be site
DEBUG_EMAIL=""
#The base url of the site.
BASE_URL="/"