|
Revision 43, 1.7 kB
(checked in by bermi, 3 years ago)
|
Added settings for currently enabled languages. Closes #7, #9, #5 and #2
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
$database_settings = array( |
|---|
| 4 |
'production' => array( |
|---|
| 5 |
'type' => 'mysql', |
|---|
| 6 |
'database_file' => '/home/bermi/database.sqlite', |
|---|
| 7 |
'host' => 'localhost', |
|---|
| 8 |
'port' => '', |
|---|
| 9 |
'database_name' => '', |
|---|
| 10 |
'user' => '', |
|---|
| 11 |
'password' => '', |
|---|
| 12 |
'options' => 'persistent' |
|---|
| 13 |
), |
|---|
| 14 |
|
|---|
| 15 |
'development' => array( |
|---|
| 16 |
'type' => 'mysql', |
|---|
| 17 |
'database_file' => '', |
|---|
| 18 |
'host' => 'localhost', |
|---|
| 19 |
'port' => '', |
|---|
| 20 |
'database_name' => '', |
|---|
| 21 |
'user' => '', |
|---|
| 22 |
'password' => '', |
|---|
| 23 |
'options' => 'persistent' |
|---|
| 24 |
), |
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
// re-generated from your development database when you run './script/test app'. |
|---|
| 28 |
// Do not set this db to the same as development or production. |
|---|
| 29 |
'testing' => array( |
|---|
| 30 |
'type' => 'mysql', |
|---|
| 31 |
'database_file' => '', |
|---|
| 32 |
'host' => 'localhost', |
|---|
| 33 |
'port' => '', |
|---|
| 34 |
'database_name' => '', |
|---|
| 35 |
'user' => '', |
|---|
| 36 |
'password' => '', |
|---|
| 37 |
'options' => 'persistent' |
|---|
| 38 |
) |
|---|
| 39 |
); |
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
$ftp_settings = ''; |
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 |
defined('AK_ENVIRONMENT') ? null : define('AK_ENVIRONMENT', 'development'); |
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 |
include_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'boot.php'); |
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
?> |
|---|