Add config database table and enable crud page. Also add cache controller, model and view and routes for these pages. Make the JavaScript display a message when changing the state of development mode.
22 lines
329 B
Plaintext
22 lines
329 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' => '',
|
|
|
|
'CLOUDFLARE_ENABLED' => '',
|
|
'CLOUDFLARE_TOKEN' => '',
|
|
'CLOUDFLARE_ZONE' => '',
|
|
];
|