-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (30 loc) · 1.95 KB
/
Copy path.env.example
File metadata and controls
38 lines (30 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Sitecore Search / Cloud SDK configuration
# Get these values from Sitecore Cloud Portal > your project > Admin > API Access,
# and from the Sitecore Search Customer Engagement Console (CEC) > Developer Resources.
# Docs: https://doc.sitecore.com/sdk/en/developers/latest/cloud-sdk/install-and-initialize-the-cloud-sdk.html
#
# NOTE: everything prefixed NEXT_PUBLIC_ is sent to the browser bundle by Next.js.
# The Cloud SDK's browser package requires these to be public (it authenticates
# using the Sitecore Edge context, not a secret API key) — do not put secrets here.
# Required. Sitecore Edge context ID for your environment (from Cloud Portal).
NEXT_PUBLIC_SITECORE_EDGE_CONTEXT_ID=
# Required. The site name configured in Sitecore for this application.
NEXT_PUBLIC_SITECORE_SITE_NAME=
# Required. The entity type this search experience queries (e.g. "content", "product").
NEXT_PUBLIC_SITECORE_SEARCH_ENTITY=content
# Required. The widget ID (rfk_id) of your search results widget, from the CEC.
NEXT_PUBLIC_SITECORE_SEARCH_WIDGET_ID=
# Optional. Name of the Suggestion Block configured by a Sitecore Search admin
# (CEC > Widgets > Suggestions) used for keyphrase autocomplete. Defaults to
# "title_context_aware", a commonly predefined block. See:
# https://doc.sitecore.com/search/en/developers/search-developer-guide/adding-suggestions.html
NEXT_PUBLIC_SITECORE_SEARCH_SUGGESTION_BLOCK=title_context_aware
# Optional. The name of the Suggestion Block configured in Sitecore Search (CEC)
# used to generate keyphrase suggestions. Defaults to "title_context_aware".
# See: https://doc.sitecore.com/search/en/developers/search-developer-guide/adding-suggestions.html
NEXT_PUBLIC_SITECORE_SEARCH_SUGGESTION_BLOCK=title_context_aware
# Optional. Locale used for search context. Defaults shown below.
NEXT_PUBLIC_SITECORE_SEARCH_LANGUAGE=en
NEXT_PUBLIC_SITECORE_SEARCH_COUNTRY=us
# Optional. Number of results per page. Defaults to 12.
NEXT_PUBLIC_SITECORE_SEARCH_PAGE_SIZE=12