-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.example
77 lines (62 loc) · 1.92 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
# App Settings
APP_ENV=development
APP_DEBUG=true
#APP_KEY={app_key}
#APP_URL={app_url}
APP_TIMEZONE=UTC
APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US
APP_MAINTENANCE_DRIVER=file
APP_MAINTENANCE_STORE=database
BCRYPT_ROUNDS=12
#APP_DOMAIN={app_domain}
# Cache, Session, and Queue Settings
CACHE_STORE=array
SESSION_DRIVER=file
QUEUE_DRIVER=sync
# Database Settings - Defaults for Homestead
DB_HOST=127.0.0.1
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
# Self Settings - Defaults for contact record referring to self (default is 1)
#SELF_CONTACT_ID=1
#SELF_NAME="Montserrat Jesuit Retreat House"
#HashID Settings
HASHIDS_SALT={hashids_salt_value}
HASHIDS_LENGTH=15
#Mail Settings
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME={gmail_username}
MAIL_PASSWORD={gmail_password}
MAIL_ENCRYPTION=ssl
#MAIL_FROM_NAME='{mail_from_name}'
# Optional settings
# Socialite Domain Restriction for authentication - allow users only from this domain
#SOCIALITE_RESTRICT_DOMAIN={domain}
# Google API Credential Settings
#GOOGLE_CLIENT_ID={google_client_id}
#GOOGLE_CLIENT_SECRET={google_client_secret}
GOOGLE_REDIRECT=http://localhost:8000/login/google/callback
# Google Calendar ID used by laravel-google-calendar
GOOGLE_CALENDAR_ID={google_calendar_id.calendar.google.com}
# Twilio settings (used for validating phone numbers and making phone calls)
#TWILIO_SID={twilio_sid}
#TWILIO_TOKEN={twilio_token}
#TWILIO_NUMBER=+{twilio_number}
# Configurations for the main gate
# GATE_NUMBER={gate number}
# OPEN_DIGITS={digits to open gate}
# CLOSE_DIGITS={digits to close gate}
# OPEN_HOURS_DIGITS={digits to open gate for certain hours}
# END_CALL_DIGITS={digits to end call}
# Mailgun settings (used for sending mail through Mailgun and processing emails received to Polanco)
#MAILGUN_DOMAIN={mailgun_domain}
#MAILGUN_SECRET={mailgun_secret}
LOG_STACK=single
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null