This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy path.env
54 lines (45 loc) · 3.39 KB
/
.env
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
46
47
48
49
50
51
52
53
54
# Compose supports declaring default environment variables in an environment file named .env placed in the folder docker-compose command is executed from (current working directory).
# Compose expects each line in an env file to be in VAR=VAL format. Lines beginning with # (i.e. comments) are ignored, as are blank lines.
# Note: Values present in the environment at runtime will always override those defined inside the .env file. Similarly, values passed via command-line arguments take precedence as well.
# The IP below should be swapped to your real IP or DNS name, like 192.168.88.248, etc. if testing from remote browsers or mobile devices
configuration=Release
ESHOP_EXTERNAL_DNS_NAME_OR_IP=localhost
ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP=10.121.122.162
TAG=dev
ESHOPAI_AML_RECOM_KEY=<YourAzureMachineLearningKey>
ESHOPAI_AML_RECOM_URI=<YourAzureMachineLearningEndpointURIforRecommendation>
ESHOPAI_CS_VIS_KEY=<YourAzureCognitiveServicesComputerVisionApiKey>
ESHOPAI_CS_VIS_URI=<YourAzureCognitiveServicesComputerVisionApiEndpointURI>
ESHOPAI_CV_PRED_KEY=<YourAzureCustomVisionPredictionKey>
ESHOPAI_CV_PROJECT_ID=<YourAzureCustomVisionProjectId>
ESHOPAI_PRODUCTSEARCHIMAGEBASED_COGNITIVE_MICROSERVICE_URI=image-cognitive-api
ESHOPAI_PRODUCTSEARCHIMAGEBASED_TENSORFLOW_MICROSERVICE_URI=image-tensorflow-api
#ESHOPAI_PRODUCTSEARCHIMAGEBASED_APPROACH=<TensorFlowPreTrained|TensorFlowCustom|ComputerVision|CustomVisionOnline|CustomVisionOffline>
ESHOPAI_PRODUCTSEARCHIMAGEBASED_APPROACH=CustomVisionOffline
#For user secrets configuration see: https://docs.microsoft.com/aspnet/core/security/app-secrets?view=aspnetcore-2.2&tabs=windows#how-the-secret-manager-tool-works
#For managing bot secrets see: http://martink.me/articles/managing-secrets-with-bot-files-in-bot-framework-v4
#Expand %APPDATA% for the equivalent folder in your computer. The complete expanded path must contain the .bot file
#ESHOPAI_BOT_SECRETS_FOLDER=%APPDATA%\Microsoft\UserSecrets\38115a34-cef1-42d9-8395-dc53c3d17c36
#ESHOPAI_BOT_AUTHENTICATION_CONNECTION_NAME=<AzureBotRegistrationChannel-OAuthProviderName>
# This is an address of the API gateway that's accessible from the bot client, that is:
# - http://localhost:5202 when using the bot emulator to access the bot microservice locally
# - https://XXXXXXXX.ngrok.io when using ngrok
ESHOPAI_BOT_IMAGEURL=http://localhost:5202
#ESHOP_AZURE_REDIS_BASKET_DB=<YourAzureRedisBasketInfo>
#ESHOP_AZURE_STORAGE_CATALOG_URL=<YourAzureStorage_Catalog_BLOB_URL>
#ESHOP_AZURE_STORAGE_MARKETING_URL=<YourAzureStorage_Marketing__BLOB_URL>
#ESHOP_AZURE_SERVICE_BUS=<YourAzureServiceBusInfo>
#ESHOP_AZURE_COSMOSDB=<YourAzureCosmosDBConnData>
#ESHOP_AZURE_CATALOG_DB=<YourAzureSQLDBCatalogDBConnString>
#ESHOP_AZURE_IDENTITY_DB=<YourAzureSQLDBIdentityDBConnString>
#ESHOP_AZURE_ORDERING_DB=<YourAzureSQLDBOrderingDBConnString>
#ESHOP_AZURE_MARKETING_DB=<YourAzureSQLDBMarketingDBConnString>
#ESHOP_AZUREFUNC_CAMPAIGN_DETAILS_URI=<YourAzureFunctionCampaignDetailsURI>
#ESHOP_AZURE_STORAGE_CATALOG_NAME=<YourAzureStorageCatalogName>
#ESHOP_AZURE_STORAGE_CATALOG_KEY=<YourAzureStorageCatalogKey>
#ESHOP_AZURE_STORAGE_MARKETING_NAME=<YourAzureStorageMarketingName>
#ESHOP_AZURE_STORAGE_MARKETING_KEY=<YourAzureStorageMarketingKey>
#ESHOP_SERVICE_BUS_USERNAME=<ServiceBusUserName-OnlyUsedIfUsingRabbitMQUnderwindows>
#ESHOP_SERVICE_BUS_PASSWORD=<ServiceBusUserPassword-OnlyUsedIfUsingRabbitMQUnderwindows>
#INSTRUMENTATION_KEY=
#USE_LOADTEST=<True/False>