forked from ademers/craft-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
35 lines (25 loc) · 964 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=""
# The prefix that should be added to generated table names (only necessary if multiple things are sharing the same database)
DB_TABLE_PREFIX=""
# System name
SYSTEM_NAME="Craft Starter"
# Sites settings
DEFAULT_SITE_URL="http://craft-starter.test"
# Email settings
SYSTEM_EMAIL_ADDRESS="[email protected]"
REPLY_TO_ADDRESS="[email protected]"
SENDER_NAME="Craft Starter"
# Assets
ASSETS_BASE_URL="http://craft-starter.test/assets"
ASSETS_FILE_SYSTEM_PATH="/home/vagrant/sites/craft-starter/web"