-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
35 lines (27 loc) · 1.47 KB
/
.env.example
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
# The Plaform URL to use.
# See https://docs.coveo.com/en/2976/coveo-solutions/deployment-regions-and-strategies
REACT_APP_PLATFORM_URL=https://platform.cloud.coveo.com
# The unique identifier of the organization in which to generate a search token.
# Example: REACT_APP_ORGANIZATION_ID=mycoveoorganizationg8tp8wu3.
# See https://docs.coveo.com/en/148/manage-an-organization/retrieve-the-organization-id
REACT_APP_ORGANIZATION_ID=<YOUR_ORGANIZATION_ID>
# An API key granting the impersonate privilege in your organization.
# The API key should have the impersonate privilege.
# See https://docs.coveo.com/en/1718/manage-an-organization/manage-api-keys#add-an-api-key
REACT_APP_API_KEY=<YOUR_API_KEY>
# The name of the security identity to impersonate.
# Example: REACT_APP_USER_EMAIL="[email protected]"
# See https://docs.coveo.com/en/56/#name-string-required.
REACT_APP_USER_EMAIL=<YOUR_USER_EMAIL>
# The endpoint to the server returning Coveo search tokens.
# Example: REACT_APP_TOKEN_ENDPOINT=https://acme.com/token
# If not specified, the application will fetch the search token
# from the local server within this project
# REACT_APP_TOKEN_ENDPOINT=<YOUR_ENDPOINT>
# Port to the search token server
# If not specified, a free port will be automatically determined and added to the .env file.
# REACT_APP_SERVER_PORT=<PORT_NUMBER>
# Application port
# If not specified, a free port will be automatically determined and added to the .env file.
# Example: SERVER_PORT=8080
# PORT=<PORT_NUMBER>