-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.example
99 lines (89 loc) · 1.95 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
##
## New Sites copy .env.example to .env
## $ php artisan key:generate
## $ php artisan passport:keys
##
##
## App config
##
APP_NAME=NameChangr
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
##
## Database configuration
## required
##
DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=namechangr
DB_USERNAME=root
DB_PASSWORD=
##
## System drivers
## local drivers for development
##
BROADCAST_DRIVER=log
CACHE_DRIVER=file
FILESYSTEM_DRIVER=local
LOG_CHANNEL=stack
MAIL_DRIVER=log
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
##
## Event Notification Email
## for user registered and application generated events
## and other admin notifiable events
##
ADMIN_NOTIFICATION_EMAIL=
##
## AWS filesystem
## not used locally
##
#AWS_ACCESS_KEY_ID=
#AWS_SECRET_ACCESS_KEY=
#AWS_DEFAULT_REGION= # http://laravelcoding.com/blog/laravel-5-beauty-upload-manager#11-s3-act-4
#AWS_BUCKET=
#AWS_KEYS_BUCKET= # bucket for deployment to heroku to get passport keys
##
## Outgoing mail config
## set driver to 'smtp' to use
##
#MAIL_HOST=smtp.mailtrap.io
#MAIL_PORT=2525
#MAIL_USERNAME=null
#MAIL_PASSWORD=null
#MAIL_ENCRYPTION=null
##
## not used
##
#PUSHER_APP_ID=
#PUSHER_APP_KEY=
#PUSHER_APP_SECRET=
#PUSHER_APP_CLUSTER=mt1
#MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
#MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
##
## Social Sign On
## for local use of this functionality you need to expose your application
## to the internet and get keys for each SSO provider you want to use.
##
FACEBOOK_SSO_ENABLED=false
#FACEBOOK_APP_ID=
#FACEBOOK_SECRET=
#FACEBOOK_REDIRECT_URL=http://www.namechangr.local/auth/facebook/callback
TWITTER_SSO_ENABLED=false
#TWITTER_APP_ID=
#TWITTER_SECRET=
#TWITTER_REDIRECT_URL=http://www.namechangr.local/auth/twitter/callback
##
## Human Verification
## required for generating applications
## recaptcha v2 checkbox https://www.google.com/recaptcha
##
RECAPTCHA_ENABLED=false
#RECAPTCHA_PUBLIC_KEY=
#RECAPTCHA_PRIVATE_KEY=