25 lines
1 KiB
Text
25 lines
1 KiB
Text
# The key used for metadata encryption. Required for production builds
|
|
SECRET_KEY=
|
|
|
|
# APL Config
|
|
# https://github.com/saleor/saleor-app-sdk/blob/main/docs/apl.md
|
|
APL=
|
|
REST_APL_ENDPOINT=
|
|
REST_APL_TOKEN=
|
|
|
|
# To use Redis as an APL store, set APP_API_BASE_URL and REDIS_URL.
|
|
# URL is in format redis[s]://[[username][:password]@][host][:port][/db-number],
|
|
# so for example redis://alice:foobared@awesome.redis.server:6380
|
|
# For saleor-platform, thats: `redis://redis:6379/1`
|
|
REDIS_URL=
|
|
|
|
APP_LOG_LEVEL=info
|
|
|
|
# Local development variables. When developped locally with Saleor inside docker, these can be set to:
|
|
# APP_IFRAME_BASE_URL = http://localhost:3000, so Dashboard on host can access iframe
|
|
# APP_API_BASE_URL=http://host.docker.internal:3000 - so Saleor can reach App running on host, from the container.
|
|
# If developped with tunnels, set this empty, it will fallback to default Next's localhost:3000
|
|
# https://docs.saleor.io/docs/3.x/developer/extending/apps/local-app-development
|
|
APP_IFRAME_BASE_URL=
|
|
APP_API_BASE_URL=
|
|
|