Environment variables
This reference lists environment variables used by the Gezy extension.
Available variables
Name | Description |
---|---|
FRONT_COMMERCE_GEZY_ENDPOINT | Required The URL of your Gezy instance, without trailing slash |
FRONT_COMMERCE_GEZY_TECHNICAL_ACCOUNT_LOGIN | Required The technical account login (usually starting with edi ) |
FRONT_COMMERCE_GEZY_TECHNICAL_ACCOUNT_PASSWORD_HASH | Required The technical account password hash (usually starting with $2y$ ) |
FRONT_COMMERCE_GEZY_TIMEOUT_IN_MS | The timeout in milliseconds for Gezy requests (defaults to 30 seconds) |
FRONT_COMMERCE_GEZY_IMAGE_PROXY_TIMEOUT_IN_MS | The timeout in milliseconds for image proxy requests (defaults to 5 seconds) |
Sample .env
file
This section contains a sample .env
file with all the possible environment
variables, with their default values (for optional values).
.env
# Gezy: required configurations
FRONT_COMMERCE_GEZY_ENDPOINT=https://YOUR_GEZY_INSTANCE.lundimatin.biz
FRONT_COMMERCE_GEZY_TECHNICAL_ACCOUNT_LOGIN=edi123456
FRONT_COMMERCE_GEZY_TECHNICAL_ACCOUNT_PASSWORD_HASH='$2y$10$YalJINpbjkZqYVbaMsPBeOZSIXuRMEKULvCCgkcxAGlzru3Daq8nq'
# Gezy: optional configurations
FRONT_COMMERCE_GEZY_TIMEOUT_IN_MS=30000