-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18164ac
commit 456c1c8
Showing
2 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
# The environment Craft is currently running in ('dev', 'staging', 'production', etc.) | ||
CRAFT_ENVIRONMENT="production" | ||
|
||
# The database driver that will used ('mysql' or 'pgsql') | ||
DB_DRIVER="pgsql" | ||
CRAFT_DB_DRIVER="pgsql" | ||
|
||
# The database server name or IP address (usually this is 'localhost' or '127.0.0.1') | ||
DB_SERVER="postgres" | ||
CRAFT_DB_SERVER="postgres" | ||
|
||
# The database username to connect with | ||
DB_USER="craft3beta" | ||
CRAFT_DB_USER="craft3beta" | ||
|
||
# The database password to connect with | ||
DB_PASSWORD="secret" | ||
CRAFT_DB_PASSWORD="secret" | ||
|
||
# The name of the database to select | ||
DB_DATABASE="craft3beta" | ||
CRAFT_DB_DATABASE="craft3beta" | ||
|
||
# The database schema that will be used (PostgreSQL only) | ||
DB_SCHEMA="public" | ||
CRAFT_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="" | ||
CRAFT_DB_TABLE_PREFIX="" | ||
|
||
# The port to connect to the database with. Will default to 5432 for PostgreSQL and 3306 for MySQL. | ||
DB_PORT="5432" | ||
CRAFT_DB_PORT="5432" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters