-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
.env.sample
56 lines (42 loc) · 1.17 KB
/
.env.sample
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
# Environment (prod or local)
APP_ENV=local
# Debug mode set to TRUE disables view caching and enables higher verbosity.
DEBUG=true
# Set to an application specific value, used to encrypt/decrypt cookies etc.
ENCRYPTER_KEY={encrypt-key}
# Set to TRUE to disable confirmation in `migrate` commands.
SAFE_MIGRATIONS=true
# Queue
QUEUE_CONNECTION=sync
# Monolog
MONOLOG_DEFAULT_CHANNEL=default
MONOLOG_DEFAULT_LEVEL=DEBUG # DEBUG, INFO, NOTICE, WARNING, ERROR, CRITICAL, ALERT, EMERGENCY
# Cache
CACHE_STORAGE=local
# Session
SESSION_LIFETIME=86400
SESSION_COOKIE=sid
# Mailer
MAILER_DSN=
MAILER_PIPELINE=local
MAILER_FROM="Spiral <[email protected]>"
# Storage
STORAGE_DEFAULT=default
# Cycle Bridge
CYCLE_SCHEMA_CACHE=true
CYCLE_SCHEMA_WARMUP=false
# Sentry
SENTRY_JS_SDK_URL=https://browser.sentry-cdn.com/7.69.0/bundle.tracing.replay.min.js
SENTRY_DSN_HOST=http://[email protected]:8082
# Persistence
PERSISTENCE_DRIVER=cache
# PERSISTENCE_DRIVER=database
DB_DRIVER=pgsql # mysql, pgsql
DB_DATABASE=buggregator
DB_HOST=127.0.0.1
DB_PORT=5432
DB_USERNAME=homestead
DB_PASSWORD=secret
# PERSISTENCE_DRIVER=mongodb
MONGODB_CONNECTION=mongodb://127.0.0.1:27017
MONGODB_DATABASE=buggregator