39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
# App
|
|
APP_ADDR=:8080
|
|
APP_ENV=development
|
|
ASSET_MANIFEST_PATH=web/dist/manifest.json
|
|
|
|
# Public shop URL and upstream proxy target
|
|
PRESTASHOP_BASE_URL=http://localhost
|
|
PRESTASHOP_PROXY_TARGET=http://localhost
|
|
PRESTASHOP_VERSION=1.7.3
|
|
|
|
|
|
# Cookie settings
|
|
# Optional explicit override. If omitted, the app derives the cookie name from
|
|
# PrestaShop version and normalized request domain using PrestaShop's naming rule.
|
|
# PRESTASHOP_COOKIE_NAME=
|
|
PRESTASHOP_COOKIE_KEY=def00000cecd7a19e52c6ae0ca758f54dd6e682c8fe4c657b8441974a33c6d11a0fc238a02c0f2de4a46fed7a57e2db8d6f6c4c615a937a26af5163293ae6702bc5d18f4
|
|
PRESTASHOP_COOKIE_IV=vfRFMV42
|
|
DOMAIN_COOKIE=localhost:8080
|
|
# PrestaShop DB
|
|
PRESTASHOP_DB_DIALECT=mariadb
|
|
DB_USER=presta
|
|
DB_PASS=presta
|
|
DB_NAME=presta
|
|
DB_PREFIX=ps_
|
|
DB_HOST=localhost
|
|
DB_PORT=3306
|
|
|
|
# Optional explicit overrides if you want to bypass the split DB_* settings above.
|
|
PRESTASHOP_DB_DSN=
|
|
PRESTASHOP_TABLE_PREFIX=
|
|
|
|
# Optional bootstrap from an existing PrestaShop install.
|
|
# If set correctly, cookie key, DB DSN and table prefix can be discovered automatically.
|
|
PRESTASHOP_PROJECT_ROOT=
|
|
PRESTASHOP_BOOTSTRAP_PATH=
|
|
|
|
# Go-owned route prefixes
|
|
ROUTE_OWNERSHIP_CONFIG=/product/
|