forked from Attendize/Attendize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
55 lines (48 loc) · 1.28 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
APP_ENV=production
APP_DEBUG=false
APP_URL=
APP_CIPHER=AES-256-CBC
APP_KEY=
APP_TIMEZONE=
APP_LANG=
LOG=errorlog
# Valid entries are mysql, pgsql, sqlite, sqlsrv
DB_TYPE=pgsql
DB_HOST=db
DB_DATABASE=attendize
DB_USERNAME=attendize
DB_PASSWORD=attendize
# https://github.com/NitMedia/wkhtml2pdf#driver-types
WKHTML2PDF_BIN_FILE=wkhtmltopdf-amd64
MAIL_DRIVER=smtp
MAIL_PORT=25
MAIL_ENCRYPTION=
MAIL_HOST=maildev
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME=
MAIL_PASSWORD=
MAIL_USERNAME=
# Configure payment providers in config/laravel-omnipay.php
# Configure other service providers in config/services.php
GOOGLE_ANALYTICS_ID=
TWITTER_WIDGET_ID=
# Configure these variables only if you know what you are doing
#
# Supported (config/filesystems.php): "local", "s3", "rackspace" - default local
# CLOUD_SERVICE_DRIVER=
#
# See config/attendize.php - default timeout 10 - default payments 1 (enabled) and testpayments false
CHECKOUT_TIMEOUT_AFTER=30
ENABLE_PAYMENTS=0
# ENABLE_TEST_PAYMENTS=
#
# See config/cache.php - default file
# CACHE_DRIVER=
#
# Supported (config/queue.php): "null", "sync", "database", "beanstalkd", "sqs", "iron", "redis"
# default sync
# QUEUE_DRIVER=
#
# Supported (config/session.php): "file", "cookie", "database", "apc", "memcached", "redis", "array"
# default file
# SESSION_DRIVER=