forked from alexjustesen/speedtest-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.php
More file actions
25 lines (13 loc) · 604 Bytes
/
app.php
File metadata and controls
25 lines (13 loc) · 604 Bytes
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
<?php
return [
'name' => env('APP_NAME', 'Speedtest Tracker'),
'env' => env('APP_ENV', 'production'),
'chart_begin_at_zero' => env('CHART_BEGIN_AT_ZERO', true),
'chart_datetime_format' => env('CHART_DATETIME_FORMAT', 'M. j - G:i'),
'datetime_format' => env('DATETIME_FORMAT', 'M. jS, Y g:ia'),
'display_timezone' => env('DISPLAY_TIMEZONE', 'UTC'),
'force_https' => env('FORCE_HTTPS', false),
'admin_name' => env('ADMIN_NAME', 'Admin'),
'admin_email' => env('ADMIN_EMAIL', 'admin@example.com'),
'admin_password' => env('ADMIN_PASSWORD', 'password'),
];