forked from agorakit/agorakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.ci
83 lines (62 loc) · 1.63 KB
/
.env.ci
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
################# AgoraKit configuration file #################
APP_NAME=AgoraKit
APP_ENV=production
APP_URL=http://localhost
# This key will be generated by laravel using php artisan key:generate
APP_KEY=
# Turn on or off debug. Use false on a production server, this is a security measure!
APP_DEBUG=false
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=127.0.0.1
DB_PORT=3306
DB_DATABASE=agorakit
DB_USERNAME=root
DB_PASSWORD=testrootpass
# Custom drivers
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
# Mail server settings
MAIL_DRIVER=mail
MAIL_HOST=null
MAIL_PORT=null
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
# Email address and name used in notifications
MAIL_FROM=admin@example.com
MAIL_FROM_NAME=Agorakit
MAIL_NOREPLY=noreply@example.com
# Inbox mail box server settings, use for incoming emails.
# Set INBOX_DRIVER to null to disable this feature
INBOX_DRIVER=null
INBOX_HOST=null
INBOX_HOST=
INBOX_PORT=
INBOX_USERNAME=null
INBOX_PASSWORD=null
INBOX_PREFIX=null
INBOX_SUFFIX=null
# Social login, see documentation for more info on how to configure those
TWITTER_ID=null
TWITTER_SECRET=null
TWITTER_URL=null
FACEBOOK_ID=null
FACEBOOK_SECRET=null
FACEBOOK_URL=null
GOOGLE_ID=null
GOOGLE_SECRET=null
GOOGLE_URL=null
GITHUB_ID=null
GITHUB_SECRET=null
GITHUB_URL=null
# Onlyoffice configuration
# ONLYOFFICE_URL=https://YOURONLYOFFICEURL
# Maximum file sizes in Kb (10000 = 10 Mb)
MAX_FILE_SIZE=10000
# Number of days to keep deleted content after complete delete from storage and DB
DATA_RETENTION=30