-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.sample
More file actions
77 lines (59 loc) · 1.79 KB
/
Copy path.env.sample
File metadata and controls
77 lines (59 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Environment (prod or local)
APP_ENV=local
# Debug mode set to TRUE disables view caching and enables higher verbosity
DEBUG=true
# Verbosity level
VERBOSITY_LEVEL=verbose # basic, verbose, debug
# Set to an application specific value, used to encrypt/decrypt cookies etc
ENCRYPTER_KEY={encrypt-key}
# Monolog
MONOLOG_DEFAULT_CHANNEL=default # Use "roadrunner" channel if you want to use RoadRunner logger
MONOLOG_DEFAULT_LEVEL=DEBUG # DEBUG, INFO, NOTICE, WARNING, ERROR, CRITICAL, ALERT, EMERGENCY
# Storage
STORAGE_DEFAULT=default
# Telemetry
TELEMETRY_DRIVER=null
# Tokenizer
TOKENIZER_CACHE_TARGETS=false
TOKENIZER_LOAD_CLASSES=true
TOKENIZER_LOAD_ENUMS=true
TOKENIZER_LOAD_INTERFACES=true
# View component options
VIEW_CACHE=false
# Session
SESSION_LIFETIME=86400
SESSION_COOKIE=sid
# Authorization
AUTH_TOKEN_TRANSPORT=cookie
AUTH_TOKEN_STORAGE=session
# Set to TRUE to disable confirmation in `migrate` commands
SAFE_MIGRATIONS=true
# Database connection options
DB_CONNECTION=sqlite
DB_LOG_QUERY_PARAMETERS=false
DB_LOG_INTERPOLATED_QUERIES=false
DB_WITH_DATETIME_MICROSECONDS=false
DB_DATABASE=spiral
DB_HOST=127.0.0.1
DB_PORT=3307
DB_USERNAME=root
DB_PASSWORD=password
# Cycle Bridge (Don't forget to set `CYCLE_SCHEMA_CACHE` to `true` in production)
CYCLE_SCHEMA_CACHE=false
CYCLE_SCHEMA_WARMUP=false
# Sentry
SENTRY_DSN=null
# Temporal infrastructure configuration
ELASTICSEARCH_VERSION=8.18.0
POSTGRESQL_VERSION=15
TEMPORAL_VERSION=1.27.2
TEMPORAL_UI_VERSION=2.37.1
# Temporal bridge configuration
TEMPORAL_ADDRESS=127.0.0.1:7233
TEMPORAL_TASK_QUEUE=default
# Velox Server Configuration (for remote binary building)
VELOX_SERVER_URL=hhttp:/vx-server:9000
# Velox server timeout in seconds (default: 600)
VELOX_SERVER_TIMEOUT=600
# Local build timeout in seconds (default: 300)
VELOX_BUILD_TIMEOUT=300