PHP Classes

File: manuscript/5.-Creating-new-application.md

Recommend this page to a friend!
  Classes of Gjero Krsteski   PIMF   manuscript/5.-Creating-new-application.md   Download  
File: manuscript/5.-Creating-new-application.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: PIMF
Framework for Web application development
Author: By
Last change: Update of manuscript/5.-Creating-new-application.md
Date: 2 months ago
Size: 633 bytes
 

Contents

Class file image Download

Creating new application

Please go to the app directory and create a new sub-directory 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',
  ),