-
Notifications
You must be signed in to change notification settings - Fork 15
5. Creating new application
Gjero Krsteski edited this page Mar 10, 2014
·
1 revision
Please go to the "app" directory and create a new subdirectory for example "MyFirstBlog"
|-- app/
| `-- MyFirstBlog/
| |-- Controller/
At the config.app.php set your projects name.
/*
|------------------------------------------------------------------------
| Application meta
|------------------------------------------------------------------------
*/
'app' => array(
'name' => 'MyFirstBlog',
'key' => 'some5secret5key5here',
'default_controller' => 'blog',
),