| 
<?php
 use \Core\Config;
 
 /**
 * Portugues:
 *
 * Configura a aplicação, setando o name e URL
 * Outras configurações também são possíveis, como conexão com banco,
 * Configurações de e-mail e etc.
 *
 *
 * English:
 *
 * Set the application by setting the name and URL
 * Other settings are also posible like connection to the database,
 * E-mail settings, etc.
 **/
 
 
 Config::Set([
 'url' => 'http://localhost/base/public_html/',
 'public' => dirname(dirname(__DIR__)).'/public_html',
 'name' => 'example',
 ]);
 |