-
Notifications
You must be signed in to change notification settings - Fork 18
/
.env.example
39 lines (28 loc) · 1.4 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
APP_ENV=production
APP_DEBUG=false
APP_KEY=SomethingRandom!!!
APP_LOCALE=en
APP_FALLBACK_LOCALE=en
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
# (REQUIRED) Your Team Slack Token
SLACK_TOKEN=YOUR-SLACK-TOKEN-WITH-ADMIN-PRIVILEGIES
# (OPTIONAL) Should the invitation email be sent again if the invitation is already pending for this email address?
# SLACK_RESEND_INVITATION=true
# (OPTIONAL) Indicates if should show the slack status message with users ative/total registered.
SLACK_STATUS_ENABLED=true
#####################################################################################
## Language Detector Configurations ##
## see https://github.com/vluzrmos/laravel-language-detector ##
#####################################################################################
#Indicates whenever should autodetect the language (it could be removed)
LANG_DETECTOR_AUTODETECT=true
#The driver to use, default is browser
LANG_DETECTOR_DRIVER="browser"
#The segment to use in uri or subdomain driver, default 0 (it could be removed)
LANG_DETECTOR_SEGMENT=0
#A comma-separated list of available languages on application
LANG_DETECTOR_LANGUAGES="en,fr_FR,pt_BR,de_DE"
#To aliase the language use the notation ":", "=", ":=" or "=>" to separate the alias and its value.
# LANG_DETECTOR_LANGUAGES="en, en-us:en, de:de_DE, fr:fr_FR, pt-br:pt_BR"