Files
website/config.php.example
T
Riyyi 253a3fe2f6 Admin+Config: Add toggle that disables Cloudflare cache
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.
2021-08-25 18:24:33 +02:00

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' => '',
];