-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
40 lines (28 loc) · 1.34 KB
/
.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
36
37
38
39
40
# 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="vzVMamc25ty46Bt8OtP8bDTwGIEzIwWB"
# The database driver that will be used ('mysql' or 'pgsql')
DB_DRIVER="mysql"
# The database server name or IP address (usually this is 'localhost' or '127.0.0.1')
DB_SERVER="localhost"
# The database username to connect with
DB_USER="root"
# The database password to connect with
DB_PASSWORD="root"
# The name of the database to select
DB_DATABASE="starter_blog"
# 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="3306"
# The site url for this environment (no trailing slash)
# The file `config/assetrev.php` depends on this environment variable.
DEFAULT_SITE_URL="http://starter-blog.test"
# Webpack dev server host for hot reloading.
# See the README for more information.
# If you need to change the port here, change it also in `webpack.config.js` line 19.
WEBPACK_SERVER_URL="http://localhost:8080"
GATSBY_PREVIEW_TARGET="http://localhost:8000/__refresh"