forked from wyveo/craftcms-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.sample
29 lines (20 loc) · 973 Bytes
/
.env.sample
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
# The environment Craft is currently running in ('dev', 'staging', 'production', etc.)
CRAFT_ENVIRONMENT="production"
# The secure key Craft will use for hashing and encrypting data (generate/update using ./craft setup/security-key)
SECURITY_KEY="random_generated_key"
# The database driver that will used ('mysql' or 'pgsql')
DB_DRIVER="pgsql"
# The database server name or IP address (usually this is 'localhost' or '127.0.0.1')
DB_SERVER="postgres"
# The database username to connect with
DB_USER="craft3"
# The database password to connect with
DB_PASSWORD="secret"
# The name of the database to select
DB_DATABASE="craft3"
# 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=""
# The port to connect to the database with. Will default to 5432 for PostgreSQL and 3306 for MySQL.
DB_PORT="5432"