-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev_env
83 lines (63 loc) · 975 Bytes
/
dev_env
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
78
79
80
81
82
83
# APP
#
APP_NAME=CCDirectLink
APP_ENV=local
APP_KEY=
APP_URL=http://localhost
#
# Service
#
DISCORD_SOCIAL_WIDGET=
DISCORD_JOIN_FALLBACK=
#
# Dev / Production
#
APP_DEBUG=true
CSP_IN_DEBUG=false
NODE_ENV=development
#
# Logging
#
LOG_CHANNEL=stack
LOG_DISCORD_WEBHOOK_URL=
#
# Database
#
DB_DEFAULT=main
# DB: Main
DB_MAIN_HOST=c2dl-mariadb
DB_MAIN_PORT=3306
DB_MAIN_DATABASE=c2dl
DB_MAIN_USERNAME=c2dl
DB_MAIN_PASSWORD=c2dl
# DB: Account (can be the same)
DB_ACC_HOST=c2dl-mariadb
DB_ACC_PORT=3306
DB_ACC_DATABASE=c2dl
DB_ACC_USERNAME=c2dl
DB_ACC_PASSWORD=c2dl
# DB: External / Services (can be the same)
DB_EXT_HOST=c2dl-mariadb
DB_EXT_PORT=3306
DB_EXT_DATABASE=c2dl
DB_EXT_USERNAME=c2dl
DB_EXT_PASSWORD=c2dl
#
# Driver
#
BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
#
# Mail
#
MAIL_DRIVER=smtp
MAIL_HOST=localhost
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
#
# --