This repository was archived by the owner on Jul 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.tests
More file actions
35 lines (31 loc) · 1.38 KB
/
.env.tests
File metadata and controls
35 lines (31 loc) · 1.38 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
# Database
DATABASE_USER=SA
DATABASE_PASSWORD=YourStrong@Passw0rd
DATABASE_NAME=ServiceLayer
DATABASE_HOST=db
DatabaseConnectionString=Server=${DATABASE_HOST};Database=${DATABASE_NAME};User Id=${DATABASE_USER};Password=${DATABASE_PASSWORD};TrustServerCertificate=True
# MESH
MeshSharedKey=TestKey
MeshPassword=password
NbssMailboxId=X26ABC1
MeshApiBaseUrl=http://localhost:8700/messageexchange
# Other
ASPNETCORE_ENVIRONMENT=Development
FileDiscoveryTimerExpression=*/5 * * * * * # Every 5 seconds so that the test doesn't have to wait too long
MeshHandshakeTimerExpression=0 0 0 * * * # Midnight
FileRetryTimerExpression=0 0 * * * *
FileExtractQueueName=file-extract
FileTransformQueueName=file-transform
StaleHours=12
MeshBlobContainerName=incoming-mesh-files
API_PORT=7071
MESH_INGEST_PORT=7072
# Event Grid
EVENT_GRID_TOPIC_URL=https://localhost:60101/api/events
EVENT_GRID_TOPIC_KEY=TheLocal+DevelopmentKey=
# Azurite
AZURITE_ACCOUNT_KEY=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw== # Standard default Azurite key
AZURITE_CONNECTION_STRING=DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=${AZURITE_ACCOUNT_KEY};BlobEndpoint=http://azurite:10000/devstoreaccount1;QueueEndpoint=http://azurite:10001/devstoreaccount1;TableEndpoint=http://azurite/devstoreaccount1
AZURITE_BLOB_PORT=10000
AZURITE_QUEUE_PORT=10001
AZURITE_TABLE_PORT=10002