Skip to main content
Version: 3.x

Environment variables

This reference lists environment variables used by the Gezy extension.

Available variables

NameDescription
FRONT_COMMERCE_GEZY_ENDPOINTRequired The URL of your Gezy instance, without trailing slash
FRONT_COMMERCE_GEZY_TECHNICAL_ACCOUNT_LOGINRequired The technical account login (usually starting with edi)
FRONT_COMMERCE_GEZY_TECHNICAL_ACCOUNT_PASSWORD_HASHRequired The technical account password hash (usually starting with $2y$)
FRONT_COMMERCE_GEZY_TIMEOUT_IN_MSThe timeout in milliseconds for Gezy requests (defaults to 30 seconds)
FRONT_COMMERCE_GEZY_IMAGE_PROXY_TIMEOUT_IN_MSThe 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