forked from grahamnscp/workflow-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.envrc.example
47 lines (36 loc) · 1.38 KB
/
.envrc.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
46
# direnv .envrc
# Temporal Cloud connection
# region: us-east-1
export TEMPORAL_HOST_URL="myns.abcdf.tmprl.cloud:7233"
export TEMPORAL_NAMESPACE="myns.abcdf"
#export TEMPORAL_HOST_URL="localhost:7233"
#export TEMPORAL_NAMESPACE="workflow-web"
# If self-hosted, skip TLS certs
export USE_TLS=true
#export USE_TLS=false
# tclient-myns client cert
export TEMPORAL_TLS_CERT="/Users/myuser/.temporal/tclient-myns.pem"
export TEMPORAL_TLS_KEY="/Users/myuser/.temporal/tclient-myns.key"
# Optional: path to root server CA cert
export TEMPORAL_SERVER_ROOT_CA_CERT=
# Optional: Server name to use for verifying the server's certificate
export TEMPORAL_SERVER_NAME=
export TEMPORAL_INSECURE_SKIP_VERIFY=false
# App temporal taskqueue names
export TRANSFER_MONEY_TASK_QUEUE="go-moneytransfer"
export STANDING_ORDERS_TASK_QUEUE="StandingOrders"
export SCHEDULE_WF_TASK_QUEUE="ScheduleWFTQ"
# timer for transfer table to be checked (seconds)
export CHECK_TRANSFER_TASKQUEUE_TIMER=20
# timer for demo delay between Withdraw and Deposit Activities
export DELAY_TIMER_BETWEEN_WITHDRAW_DEPOSIT=15
# payload data encryption
export ENCRYPT_PAYLOAD=false
export DATACONVERTER_ENCRYPTION_KEY_ID=mysecretkey
# Set to enable debug logger logging
export LOG_LEVEL=debug
# local mysql backend db connection
export MYSQL_HOST=localhost
export MYSQL_DATABASE=dataentry
export MYSQL_USER=mysqluser
export MYSQL_PASSWORD=mysqlpw