forked from agorakit/agorakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
71 lines (49 loc) · 1.47 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
################# 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=SomeRandomString
# The name of your application, used in various places like titles, email subjetc, etc...
APP_NAME='Agorakit'
APP_URL=http://locahost
APP_LOG=daily
# Default locale to use if not detected. Use two characters locale identifier
APP_DEFAULT_LOCALE=en
# Database credentials
DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
# 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
# Mapbox token. Register on mapbox.com to get a free access token. Used to show maps everywhere.
MAPBOX_TOKEN=null
# Google maps token : use it for geocoding. Note that it requires a billing account at google
GOOGLE_MAPS_GEOCODING_API_KEY=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