1
0
mirror of https://github.com/silverstripe/silverstripe-framework synced 2024-10-22 12:05:37 +00:00

18 lines
563 B
PHP
Raw Normal View History

2012-08-14 16:02:12 +12:00
<?php
ob_start();
define('SS_ENVIRONMENT_TYPE', 'dev');
/* Database connection */
2012-08-14 16:45:13 +12:00
define('SS_DATABASE_CLASS', 'SQLitePDODatabase');
define('SS_DATABASE_SERVER', 'localhost');
2012-08-14 16:02:12 +12:00
define('SS_DATABASE_USERNAME', 'root');
define('SS_DATABASE_PASSWORD', '');
define('SS_DATABASE_CHOOSE_NAME', true);
/* Configure a default username and password to access the CMS on all sites in this environment. */
define('SS_DEFAULT_ADMIN_USERNAME', 'username');
define('SS_DEFAULT_ADMIN_PASSWORD', 'password');
2012-08-14 16:44:32 +12:00
$_FILE_TO_URL_MAPPING[dirname(__FILE__)] = 'http://localhost';