forked from rapidez/rapidez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
61 lines (49 loc) · 1.41 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
APP_NAME=Rapidez
APP_ENV=local
APP_KEY=
APP_DEBUG=true
VITE_DEBUG=true
DEBUGBAR_ENABLED=false
MAGENTO_HOST="magento.local"
RAPIDEZ_HOST="rapidez.local"
APP_URL=http://${RAPIDEZ_HOST}
MAGENTO_URL=http://${MAGENTO_HOST}
RAPIDEZ_TOKEN=
# For local usage without docker-compose.yml
ELASTICSEARCH_HOST="localhost"
ELASTICSEARCH_PORT=9200
# For local usage with docker-compose.yml
# ELASTICSEARCH_HOST="elasticsearch.local"
# ELASTICSEARCH_PORT=80
ELASTICSEARCH_SCHEME="http"
ELASTICSEARCH_USER=elastic
ELASTICSEARCH_PASS="changeme"
ELASTICSEARCH_RAPIDEZ_PASS="rapidez"
# This is used for communication from the website frontend, its important that the domain is reachable. localhost or 127.0.0.1 does not work.
# If $ELASTICSEARCH_HOST is not publically accessible its better to hardcode the $ELASTICSEARCH_URL
ELASTICSEARCH_URL=${ELASTICSEARCH_SCHEME}://web:${ELASTICSEARCH_RAPIDEZ_PASS}@${ELASTICSEARCH_HOST}:${ELASTICSEARCH_PORT}
LOG_CHANNEL=stack
LOG_LEVEL=debug
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=magento
DB_USERNAME=magento
DB_PASSWORD=password
APP_MAINTENANCE_STORE="file"
BROADCAST_DRIVER=log
CACHE_STORE=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"