saleor-apps-rs/.env.example

16 lines
924 B
Text
Raw Normal View History

2024-02-27 16:50:48 +00:00
REQUIRED_SALEOR_VERSION="^3.13"
2024-03-06 15:42:04 +00:00
APP_API_BASE_URL="http://0.0.0.0:3000"
2024-02-27 16:50:48 +00:00
APL="Redis"
APL_URL="redis://localhost:6380/2"
2024-02-21 21:37:06 +00:00
LOG_LEVEL="DEBUG"
2024-03-06 15:42:04 +00:00
# Available fields can be found in ./sitemap-generator/src/queries/event_subjects_updated.rs: ProductUpdate
SITEMAP_PRODUCT_TEMPLATE="https://example.com/{product.category.slug}/{product.slug}"
# Available fields can be found in ./sitemap-generator/src/queries/event_subjects_updated.rs: CategoryUpdate
SITEMAP_CATEGORY_TEMPLATE="https://example.com/{category.slug}"
# Available fields can be found in ./sitemap-generator/src/queries/event_subjects_updated.rs: CollectionUpdate
SITEMAP_COLLECTION_TEMPLATE="https://example.com/collection/{collection.slug}"
# Available fields can be found in ./sitemap-generator/src/queries/event_subjects_updated.rs: PageUpdate
SITEMAP_PAGES_TEMPLATE="https://example.com/{page.slug}"
# Without trailing "/"!
SITEMAP_INDEX_HOSTNAME="https://example.com"