Created
August 11, 2012 05:52
-
-
Save toopay/3321589 to your computer and use it in GitHub Desktop.
Front Socket Juriya
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Juriya - RAD PHP Framework | |
* | |
* @package Juriya | |
* @version 0.0.1 | |
* @author Taufan Aditya | |
*/ | |
/** | |
*--------------------------------------------------------------- | |
* Environment | |
*--------------------------------------------------------------- | |
* Prototype : | |
* | |
* Values | Description | |
* --------------|----------------------------------------------- | |
* `test` | Unit Testing environment | |
* `development` | Development environment | |
* `production` | Production environment | |
*/ | |
$environment = 'development'; | |
/** | |
*--------------------------------------------------------------- | |
* Path to the application directory. | |
*--------------------------------------------------------------- | |
*/ | |
$application = 'app'; | |
/** | |
*--------------------------------------------------------------- | |
* Path to the modules directory. | |
*--------------------------------------------------------------- | |
*/ | |
$modules = '/path/to/modules'; | |
/** | |
*--------------------------------------------------------------- | |
* Path to the system directory. | |
*--------------------------------------------------------------- | |
*/ | |
$system = '/path/to/juriya/src/Juriya'; | |
// Launch | |
require 'launcher.php'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment