forked from opengovfoundation/madison
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
63 lines (49 loc) · 1.26 KB
/
.env.example
File metadata and controls
63 lines (49 loc) · 1.26 KB
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
# General site settings
APP_ENV=local
APP_DEBUG=true
APP_KEY=SomeRandomString
APP_NAME='Madison'
# Settings for services
# Database
DB_DRIVE=mysql
DB_HOST=localhost
DB_DATABASE=madison
DB_USERNAME=root
DB_PASSWORD=root
# Cache
CACHE_DRIVER=file
# Session
SESSION_DRIVER=file
# Queue (Not used at this time)
QUEUE_DRIVER=sync
# We strongly recommend you signup for a mailer service, such as Sendgrid,
# Mailgun, Mandrill, Amazon SES, etc. Enter your account info here.
MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=user@mail.com
MAIL_FROM_NAME=user
# The default settings for the admin user.
ADMIN_EMAIL=admin@example.com
ADMIN_PASSWORD=secret
# Social authentication credentials.
# Facebook
FB_CLIENT_ID=null
FB_CLIENT_SECRET=null
# Twitter
TW_CLIENT_ID=null
TW_CLIENT_SECRET=null
# LinkedIn
LI_CLIENT_ID=null
LI_CLIENT_SECRET=null
# This is the uservoice javascript file hash in the UV uv.src embed code
# Used as such: uv.src = '//widget.uservoice.com/' + uservoiceHash + '.js';
USERVOICE=null
# This is needed to sync sessions between Madison Core (this application) and
# the Madison Editor.
COOKIE_DOMAIN=.mymadison.local
# Your Google Analytics account (eg. 'UA-00000000-0')
GA=null