Skip to content

Commit

Permalink
.env.sample update
Browse files Browse the repository at this point in the history
  • Loading branch information
colinwilson committed Aug 21, 2017
1 parent 18164ac commit 456c1c8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .env.sample
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"
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
### Update
- Upgrade Craft to 3.0.0-beta.25
- Downgrade Composer to 1.4.3
- .env update

## [0.2.1] - 16-08-2017
### Update
Expand Down

0 comments on commit 456c1c8

Please sign in to comment.