-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.testing
80 lines (68 loc) · 1.83 KB
/
.env.testing
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
78
APP_NAME="gamify"
APP_ENV=testing
APP_KEY=base64:P63bVN0iFDpcftKjz1ROB38O4VZw56/AqrY06JSXA+8=
APP_DEBUG=true
APP_URL=http://localhost
APP_TIMEZONE="UTC"
# Database configuration.
DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=testing
DB_USERNAME=root
DB_PASSWORD=
# Mailer configuration.
MAIL_MAILER=array
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=test@domain.local
MAIL_FROM_NAME="${APP_NAME}"
# Cache configuration.
#
# For file, use 'CACHE_DRIVER=file'.
CACHE_DRIVER=array
# For Redis, use 'CACHE_DRIVER=redis' and set 'REDIS_*' variables below.
# CACHE_DRIVER=redis
# Session manager configuration.
#
# For Database, use 'SESSION_DRIVER=database' and set 'SESSION_CONNECTION' to a valid connection.
SESSION_DRIVER=array
SESSION_CONNECTION=mysql
# For Redis, use 'SESSION_DRIVER=redis' and set 'REDIS_*' variables below.
# SESSION_DRIVER=redis
# Redis configuration.
# REDIS_HOST=127.0.0.1
# REDIS_PASSWORD=null
# REDIS_PORT=6379
# Multi-auth configuration.
# See 'config/services.php' to know how to enable OAuth providers.
#
# For okta OAuth, set these variables.
OKTA_KEY=
OKTA_SECRET=
OKTA_REDIRECT_URI=
OKTA_BASE_URL=
# External storage service configuration.
# Define which disk will be used for uploads (user, badge and level's images).
#
# Default value (commented) is 'public' disk (see 'config/filesystems.php').
#
# You can use any available disk at 'disks' (see 'config/filesystems.php').
#
# For AWS S3, uncomment it, set 'UPLOAD_DISK=s3' and set 'AWS_*' variables below.
# UPLOAD_DISK=public
# AWS S3 configuration.
# Set 'UPLOAD_DISK=s3' to upload images to AWS.
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=
AWS_BUCKET=
# -----[ DO NOT TOUCH BELOW THIS POINT ]-----
#
BROADCAST_DRIVER=log
QUEUE_CONNECTION=sync
LOG_CHANNEL=stack
LOG_LEVEL=debug