forked from agorakit/agorakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.dev
63 lines (44 loc) · 1.29 KB
/
.env.dev
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
################# Agorakit configuration file #################
APP_ENV=local
# Turn on or off debug. Use false on a production server, this is a security measure!
APP_DEBUG=true
# This key will be generated by laravel using php artisan key:generate
APP_KEY=generateone
# The name of your application, used in various places like titles, email subjetc, etc...
APP_NAME='Agorakit'
APP_URL=http://localhost
APP_LOG=daily
# Default locale to use if not detected. Use two characters locale identifier
APP_DEFAULT_LOCALE=en
# Database credentials
DB_CONNECTION=mysql
DB_HOST=agorakit_database
DB_DATABASE=agorakit
DB_USERNAME=agorakit
DB_PASSWORD=password
# Custom drivers
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
# Mail server settings
MAIL_HOST=agorakit_mailpit
MAIL_PORT=1025
MAIL_ENCRYPTION=null
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
# Email address and name used in notifications
MAIL_FROM=admin@localhost
MAIL_FROM_NAME=Agorakit
MAIL_NOREPLY=noreply@localhost
# Inbox mail box server settings, use for incoming emails.
# Set INBOX_DRIVER to null to disable this feature
INBOX_DRIVER=imap
INBOX_HOST=localhost
INBOX_PORT=
INBOX_USERNAME=null
INBOX_PASSWORD=null
INBOX_PREFIX=null
INBOX_SUFFIX=@localhost
# Maximum file sizes in Kb (10000 = 10 Mb)
MAX_FILE_SIZE=10000