-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
51 lines (41 loc) · 1.44 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
# The application name, used by Lumen.
APP_NAME="Follow search"
# Application key. The output of `openssl rand -base64 24` is a good choice.
APP_KEY=
# The current environment. Should be "production" in production.
APP_ENV=local
# Enable debugging. Normally exceptions cause an uninformative "500
# Internal error" response, but in debugging mode it'll include the
# exception message.
APP_DEBUG=true
# Credentials for accessing Adgangsplatformen, the single sign-on system used by
# the public libraries in Denmark
# See https://github.com/danskernesdigitalebibliotek/oauth2-adgangsplatformen/
# When using the testing driver Adgangsplatformen is not contacted.
ADGANGSPLATFORMEN_DRIVER=testing
# ADGANGSPLATFORMEN_DRIVER=production
# ADGANGSPLATFORMEN_CLIENT_ID=client-id
# ADGANGSPLATFORMEN_CLIENT_SECRET=client-secret
# Logging configuration. See the Lumen documentation for more info.
LOG_CHANNEL=stack
# Database connection information. Mysql example:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
DB_SSL=false
# Or sqlite:
# DB_CONNECTION=sqlite
# DB_DATABASE=/tmp/db.sqlite
# Unused configuration options
# These af default Lumen configuration options which are not used at the moment.
# They are kept around for reference.
# Application URL.
APP_URL=http://localhost
# Application Timezone.
APP_TIMEZONE=UTC
# Lumen cache and queue connection.
CACHE_DRIVER=file
QUEUE_CONNECTION=sync