-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example.development
More file actions
65 lines (51 loc) · 1.04 KB
/
Copy path.env.example.development
File metadata and controls
65 lines (51 loc) · 1.04 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
VITE_DEV_SERVER=true
VITE_DEV_SERVER_URL=http://127.0.0.1:5173
# Database
DB_CONNECTION=mysql
# MySQL / PostgreSQL
DB_HOST=127.0.0.1
DB_PORT=3306
DB_NAME=octane
DB_USERNAME=root
DB_PASSWORD=
# SQLite
# DB_CONNECTION=sqlite
# DB_NAME=/absolute/path/to/database.sqlite
# DB_NAME=:memory:
# PostgreSQL
# DB_CONNECTION=pgsql
# DB_PORT=5432
# Database query log
DB_QUERY_LOG=false
DB_QUERY_LOG_SLOW_MS=100
# QueryBuilder debug log
QUERY_LOG=false
# Halcyon ORM metadata
HALCYON_METADATA_CACHE=false
# DTO
DTO_METADATA_CACHE=false
DTO_STRICT_MAPPING=true
DTO_UNKNOWN_FIELDS=ignore
DTO_MISSING_FIELDS=throw
DTO_INCLUDE_NULL=true
# Validation
VALIDATION_STOP_ON_FIRST_FAILURE=false
VALIDATION_PRESENCE_DRIVER=null
# Hashing
HASH_DRIVER=bcrypt
BCRYPT_ROUNDS=10
ARGON2_MEMORY=65536
ARGON2_TIME=4
ARGON2_THREADS=1
# HTTP
HTTP_TRIM_STRINGS=true
HTTP_EMPTY_STRINGS_TO_NULL=true
HTTP_VALIDATE_POST_SIZE=true
# Prism views
PRISM_CACHE=true
# API docs
DOCS_API_ENABLED=true
DOCS_API_ROUTE=/_octane/api
# Exceptions
EXCEPTION_RENDERER=auto
EXCEPTION_JSON_PRETTY=false