-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (48 loc) · 1.28 KB
/
Copy path.env.example
File metadata and controls
56 lines (48 loc) · 1.28 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
APP_NAME="Payout Provider Service"
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost:8080
APP_TIMEZONE=UTC
# Docker exposed ports
APP_HTTP_PORT=8080
MYSQL_HOST_PORT=3307
REDIS_HOST_PORT=6379
TEMPORAL_HOST_PORT=7233
TEMPORAL_UI_PORT=8088
# Docker image versions
MYSQL_VERSION=8.4
REDIS_VERSION=7.4-alpine
TEMPORAL_VERSION=latest
TEMPORAL_UI_VERSION=latest
TEMPORAL_ADMIN_TOOLS_VERSION=latest
LOG_CHANNEL=stderr
LOG_LEVEL=debug
SESSION_DRIVER=array
DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=payouts
DB_USERNAME=payouts
DB_PASSWORD=secret
DB_ROOT_PASSWORD=rootsecret
MYSQL_ROOT_HOST=%
CACHE_STORE=redis
QUEUE_CONNECTION=redis
REDIS_CLIENT=predis
REDIS_HOST=redis
REDIS_PASSWORD=null
REDIS_PORT=6379
PAYMENT_PROVIDER_BASE_URL=http://app:8000/provider
PAYMENT_PROVIDER_TIMEOUT=3
# Empty value disables signature verification for local manual testing.
# Set it and send X-Provider-Signature: sha256=**** to enable webhook protection.
PROVIDER_WEBHOOK_SECRET=qwerty-secret
# temporal | laravel_queue
PAYOUT_ORCHESTRATION_DRIVER=temporal
TEMPORAL_ADDRESS=temporal:7233
TEMPORAL_NAMESPACE=default
TEMPORAL_NAMESPACE_RETENTION=1d
TEMPORAL_TASK_QUEUE=payout-provider-tasks
# Mock modes: success | rate_limit | server_error | timeout | permanent_error | random
MOCK_PROVIDER_MODE=success