forked from shopware5/composer-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
29 lines (24 loc) · 814 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
# Database credentials
DB_HOST=localhost
DB_DATABASE=composer
DB_USERNAME=root
DB_PASSWORD=root
DB_PORT=3306
# This variable is checked by Shopware
DATABASE_URL=mysql://${DB_USERNAME}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_DATABASE}
# Shop URL for initial shop configuration
SHOP_URL=https://composer.test/path
# Environment and Shopware Version
SHOPWARE_ENV="dev"
SHOPWARE_VERSION=5.4.0
SHOPWARE_VERSION_TEXT=DEV
SHOPWARE_REVISION=201808164711
# Username and password for the initial admin account
# This info will be populated into the database during initial installation.
# After that, it can (and should) be removed from this .env file
ADMIN_NAME="Demo User"
ADMIN_USERNAME=demo
ADMIN_PASSWORD=demo
# Import demodata during initial shop installation
IMPORT_DEMODATA=true