It's now possible to disable the Cloudflare cache during development, so the hacky workaround with the random number in the CSS/JS URLs is no longer needed. Development mode is automatically disabled by Cloudflare after 4 hours.
22 lines
339 B
Plaintext
22 lines
339 B
Plaintext
<?php
|
|
|
|
return [
|
|
'APP_NAME' => '',
|
|
'APP_URL' => '',
|
|
|
|
'DB_HOST' => '',
|
|
'DB_NAME' => '',
|
|
'DB_USERNAME' => '',
|
|
'DB_PASSWORD' => '',
|
|
|
|
'MAIL_HOST' => '',
|
|
'MAIL_PORT' => '',
|
|
'MAIL_NAME' => '',
|
|
'MAIL_USERNAME' => '',
|
|
'MAIL_PASSWORD' => '',
|
|
|
|
'DEVELOPMENT_MODE' => '',
|
|
'DEVELOPMENT_MODE_TOKEN' => '',
|
|
'DEVELOPMENT_MODE_ZONE' => '',
|
|
];
|