-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
32 lines (22 loc) · 853 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
# The environment Craft is currently running in (dev, staging, production, etc.)
ENVIRONMENT=dev
# The application ID used to to uniquely store session and cache data, mutex locks, and more
APP_ID=CraftCMS
# 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
DB_SERVER=127.0.0.1
# The port to connect to the database with
DB_PORT=
# The name of the database to select
DB_DATABASE=
# 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=