-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
154 lines (140 loc) · 5.79 KB
/
.env.example
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
###########################################################################
# BACKEND
###########################################################################
# Laravel Env Variables
###########################################################################
###########################################################################
# APPLICATION
###########################################################################
# Set the application setting
# Set a strong, random encryption key for the application.
APP_KEY="YOUR_APP_KEY"
# Set the environment to production to ensure
# that the application is optimized for production use.
APP_ENV=local
# Set this to false to turn off debugging and prevent
# sensitive information from being leaked to the end user.
APP_DEBUG=true
# Your Application Name
APP_NAME="YOUR_APP_NAME"
# Your Application Url
APP_URL="http://localhost.test"
###########################################################################
###########################################################################
# DATABASE
###########################################################################
# Set the database connection settings
DB_PORT=3306
DB_USERNAME="root"
DB_PASSWORD=null
DB_HOST="127.0.0.1"
DB_CONNECTION=mysql
DB_DATABASE="YOUR_DATABASE"
###########################################################################
###########################################################################
#LOGGER
###########################################################################
# Set the logger settings
LOG_LEVEL=debug
LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
###########################################################################
###########################################################################
#SESSION
###########################################################################
# Set the session settings
# Set the session driver to redis or
# memcached for better performance in production.
SESSION_DRIVER=file
SESSION_LIFETIME=120
###########################################################################
###########################################################################
# BROADCAST
###########################################################################
# Set the broad settings
# Set the broadcast driver to pusher
# or redis for better performance in production.
BROADCAST_DRIVER=log
###########################################################################
###########################################################################
# FILESYSTEM
###########################################################################
# Set the filesystem settings
FILESYSTEM_DISK=local
###########################################################################
###########################################################################
# QUEUE
###########################################################################
# Set the queue driver to redis or
# database for better performance in production.
QUEUE_CONNECTION=sync
###########################################################################
###########################################################################
# CACHE
###########################################################################
# Set the cache driver to redis or
# memcached for better performance in production.
CACHE_DRIVER=file
#MEMCACHE
MEMCACHED_HOST="127.0.0.1"
#REDIS
REDIS_PORT=6379
REDIS_PASSWORD=null
REDIS_HOST=127.0.0.1
###########################################################################
###########################################################################
# MAILER
###########################################################################
# Set the mail driver to smtp and
# configure the settings for your email provider.
MAIL_PORT=2525
MAIL_MAILER="smtp"
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_HOST="mailpit"
MAIL_ENCRYPTION=null
MAIL_FROM_NAME="${APP_NAME}"
MAIL_FROM_ADDRESS="hello@example.com"
###########################################################################
###########################################################################
# CRAWLER
###########################################################################
CRAWLER_CONCURRENCY=10
CRAWLER_PROFILE = "profile"
CRAWLER_MAXIMUM_DEPTH = null
CRAWLER_NAME="YOUR_CRAWLER_NAME"
CRAWLER_TOTAL_CRAWL_LIMIT = null
CRAWLER_CURRENT_CRAWL_LIMIT = null
CRAWLER_DELAY_BETWEEN_REQUESTS = 0
CRAWLER_MAXIMUM_RESPONSE_SIZE=3145728
###########################################################################
###########################################################################
# JWT
###########################################################################
JWT_TTL="TIME_IN_MINUTES"
JWT_SECRET="YOUR_JWT_SECRET"
JWT_REFRESH_TTL="REFRESH_TTL"
JWT_BLACKLIST_GRACE_PERIOD="GRACE_PERIOD"
###########################################################################
###########################################################################
# FRONTEND
###########################################################################
# React Env Variables
###########################################################################
###########################################################################
# VITE
###########################################################################
# Application Secret
VITE_APP_SECRET = "YOUR_VITE_SECRET"
# Local Storage Slim
VITE_LOCAL_STORAGE_ENCRYPT = true
###########################################################################
###########################################################################
# PUSHER
###########################################################################
VITE_PUSHER_HOST="${PUSHER_HOST}"
VITE_PUSHER_PORT="${PUSHER_PORT}"
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
###########################################################################