server/php/basic/resources/config.php.tmpl
changeset 444 19f0b7803aed
parent 442 adb907bba956
equal deleted inserted replaced
443:4c7ab16e5845 444:19f0b7803aed
     3 $config = [
     3 $config = [
     4     "db" => [
     4     "db" => [
     5         "dsn" => "sqlite:".realpath(dirname(__FILE__))."/../data/renkan.sqlite",
     5         "dsn" => "sqlite:".realpath(dirname(__FILE__))."/../data/renkan.sqlite",
     6         "user" => "dbUser",
     6         "user" => "dbUser",
     7         "password" => "pa$$"
     7         "password" => "pa$$"
     8    ]
     8     ],
     9 ];
     9 ];
    10 
    10 
    11 /*
    11 /*
    12    I will usually place the following in a bootstrap file or some type of environment
    12    I will usually place the following in a bootstrap file or some type of environment
    13    setup file (code that is run at the start of every page request), but they work
    13    setup file (code that is run at the start of every page request), but they work