-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env-example
45 lines (39 loc) · 1.61 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
34
35
36
37
38
39
40
41
42
43
44
45
###
### IMPORTANT! This file is parsed by both "dotenv" and "next.js",
### FYI https://nextjs.org/docs/basic-features/environment-variables
###
### > ...
### > If you are trying to use a variable with a $ in the actual value, it needs to be escaped like so: \$.
### > ...
### > # becomes "pre$A"
### > CORRECT=pre\$A
### > ...
###
# the Sitecore endpoint where Uniform Connector is installed and configured
UNIFORM_API_URL=https://sitecore.dev.local
# define security token to prevent unauthorized use of API interfaces
# change regularly both in this .env file and in Sitecore; do not expose and do not share with anybody
UNIFORM_API_TOKEN=
# # if you need to change the site name
# UNIFORM_API_SITENAME=uniform-jss-kit
# If using self-signed certs, may require this
# NODE_TLS_REJECT_UNAUTHORIZED=0
###
### IMPORTANT! It is recommended to configure a publish target in Sitecore instead,
### see uniform-jss-kit.Uniform.Deployment.HostedService.AzureBlob.config.disabled file
###
#
# ======== Azure Blob Storage target configuration ========
#
# # enabling Azure Blob Storage as publish target (UNIFORM_PUBLISH_TARGET=none|azureblob)
# UNIFORM_PUBLISH_TARGET=azureblob
#
# # defining AZURE_CONTAINER Azure Blob Storage container name to deploy .html files to (use $web to use Azure Staic Site)
# AZURE_CONTAINER=\$web
#
# Value of 'Connection String' from the 'Access keys' tab of your storage account.
# AZURE_STORAGE_CONNECTION_STRING=
#
# make sure to make azcopy available at this path, could be relative to the app root: ".\azcopy.exe" for Windows, and "./azcopy" for linux
# AZCOPY_PATH=E:\tools\azcopy.exe
#