Jakobo / chippino

A lightweight MVC framework on top of Grok-PHP

This URL has Read+Write access

chippino / index.php
100644 16 lines (10 sloc) 0.499 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
 
 
// path to chippino.php
require_once dirname(dirname(__FILE__)) . 'chippino.php';
 
// the base path is where your applications are located with ending slash
chippino_config()->base_path = dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'apps';
 
// That's it, you're done with the primary config
// don't mess with anything down here unless you know
// what you are doing.
// --------------------------------------------------------------------------
 
chip('#Chippino/Core/Init')->with();