<?php
$config = Config::singleton();

define('DS', DIRECTORY_SEPARATOR );

$config->set('components', 'components');
$config->set('controllersFolder', 'controllers/');
$config->set('modelsFolder', 'models/');
$config->set('viewsFolder', 'templates/');

$config->set('dbhost', 'localhost');
$config->set('dbname', 'db_pbase');
$config->set('dbuser', 'root');
$config->set('dbpass', '1nf0j4syrc');
?>