Skip to content

Instantly share code, notes, and snippets.

@toopay
Created August 11, 2012 05:52
Show Gist options
  • Save toopay/3321589 to your computer and use it in GitHub Desktop.
Save toopay/3321589 to your computer and use it in GitHub Desktop.
Front Socket Juriya
<?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