| 1 |
;
|
| 2 |
; Drake Configuration File
|
| 3 |
;
|
| 4 |
; Define each CakePHP application identifier as an INI section (as shown below)
|
| 5 |
; Referr to the section [example] to see all available options. The default
|
| 6 |
; application setting given in this example shows the minimum settings you need
|
| 7 |
; to specify.
|
| 8 |
;
|
| 9 |
; When paths are specified relatively, they are relative to Drupal's root path.
|
| 10 |
;
|
| 11 |
|
| 12 |
[settings]
|
| 13 |
|
| 14 |
default = "my_app"
|
| 15 |
|
| 16 |
[my_app]
|
| 17 |
|
| 18 |
path = "../cake/app/webroot"
|
| 19 |
url = "/cake"
|
| 20 |
|
| 21 |
[example]
|
| 22 |
|
| 23 |
name = "Example CakePHP application" ; A name to show on the administration section
|
| 24 |
path = "../cake/app/webroot" ; Path to your CakePHP webroot dir
|
| 25 |
url = "/cake" ; Absolute URL (http not needed) to your CakePHP application
|
| 26 |
send = "param1=dummy1¶m2=dummy2" ; Send some extra parameters to your CakePHP application
|