~horux-dev/horux-webcli/thfo

« back to all changes in this revision

Viewing changes to yii/framework/cli/views/webapp/index-test.php

  • Committer: Thierry Forchelet
  • Date: 2011-02-25 13:30:15 UTC
  • Revision ID: thierry.forchelet@letux.ch-20110225133015-zxyj9w7sqv8ly971
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * This is the bootstrap file for test application.
 
4
 * This file should be removed when the application is deployed for production.
 
5
 */
 
6
 
 
7
// change the following paths if necessary
 
8
$yii=dirname(__FILE__).'/../framework/yii.php';
 
9
$config=dirname(__FILE__).'/protected/config/test.php';
 
10
 
 
11
// remove the following line when in production mode
 
12
defined('YII_DEBUG') or define('YII_DEBUG',true);
 
13
 
 
14
require_once($yii);
 
15
Yii::createWebApplication($config)->run();