|
Revision 552, 0.7 kB
(checked in by scorfield, 1 year ago)
|
|
Fixes #259 by moving error templates from the skeleton apps into the core files.
And modifying the build.xml to allow deploy or deploywithextensions.
|
| Line | |
|---|
| 1 | <project name="Test Fusebox 5.5 Skeleton" default="deploy"> |
|---|
| 2 | |
|---|
| 3 | <!-- modify this to point to your installed web root or wherever you want to create new applications: --> |
|---|
| 4 | <property name="target" value="/Library/WebServer/Documents"/> |
|---|
| 5 | <!-- modify this to be the name of the new application you want to build: --> |
|---|
| 6 | <property name="appname" value="skeleton"/> |
|---|
| 7 | |
|---|
| 8 | <property name="source" value="."/> |
|---|
| 9 | <property name="extensions" value="../extensions/"/> |
|---|
| 10 | |
|---|
| 11 | <target name="deploy"> |
|---|
| 12 | <copy todir="${target}/${appname}/"> |
|---|
| 13 | <fileset dir="${source}" /> |
|---|
| 14 | </copy> |
|---|
| 15 | </target> |
|---|
| 16 | |
|---|
| 17 | <target name="deploywithextensions" depends="deploy"> |
|---|
| 18 | <copy todir="${target}/${appname}/"> |
|---|
| 19 | <fileset dir="${extensions}" /> |
|---|
| 20 | </copy> |
|---|
| 21 | </target> |
|---|
| 22 | |
|---|
| 23 | </project> |
|---|