mirror of
https://github.com/elyby/chrly.git
synced 2025-01-05 19:43:52 +05:30
16 lines
320 B
PHP
16 lines
320 B
PHP
<?php
|
|
|
|
return new \Phalcon\Config([
|
|
'mongo' => [
|
|
'host' => 'localhost',
|
|
'port' => 27017,
|
|
'username' => '',
|
|
'password' => '',
|
|
'dbname' => 'ely_skins',
|
|
],
|
|
'application' => [
|
|
'modelsDir' => __DIR__ . '/../models/',
|
|
'baseUri' => '/',
|
|
]
|
|
]);
|