|
Revision 1202, 0.8 kB
(checked in by laurentj, 2 days ago)
|
updated entrypoint of testapp with the new default content of entry points
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
require (dirname(__FILE__).'/../lib/jelix/init.php'); |
|---|
| 14 |
define ('JELIX_APP_PATH', dirname (__FILE__).'/'); |
|---|
| 15 |
|
|---|
| 16 |
define ('JELIX_APP_TEMP_PATH', realpath(JELIX_APP_PATH.'../temp/testapp-cli/').'/'); |
|---|
| 17 |
define ('JELIX_APP_VAR_PATH', realpath(JELIX_APP_PATH.'var/').'/'); |
|---|
| 18 |
define ('JELIX_APP_LOG_PATH', realpath(JELIX_APP_PATH.'var/log-cli/').'/'); |
|---|
| 19 |
define ('JELIX_APP_CONFIG_PATH', realpath(JELIX_APP_PATH.'var/config/').'/'); |
|---|
| 20 |
define ('JELIX_APP_WWW_PATH', realpath(JELIX_APP_PATH.'www/').'/'); |
|---|
| 21 |
|
|---|
| 22 |
?> |
|---|