working on Phing setup

pull/1/head
ppaulis 2016-11-07 09:20:35 +01:00
parent 1cfdca6a8f
commit e76c8021fc
1 changed files with 3 additions and 1 deletions

View File

@ -63,6 +63,7 @@
</target> </target>
<target name="setup-sec-auth" description="Setup Security and Authentication"> <target name="setup-sec-auth" description="Setup Security and Authentication">
<echo msg="Loading file ${project.basedir}/config/autoload/security-authentication.local.php.dist" />
<loadfile property="sec.config" file="${project.basedir}/config/autoload/security-authentication.local.php.dist"> <loadfile property="sec.config" file="${project.basedir}/config/autoload/security-authentication.local.php.dist">
<filterchain> <filterchain>
<replacetokens> <replacetokens>
@ -71,6 +72,7 @@
</replacetokens> </replacetokens>
</filterchain> </filterchain>
</loadfile> </loadfile>
<echo msg="Writing file ${project.basedir}/config/autoload/security-authentication.local.php" />
<echo message="${sec.config}" file="${project.basedir}/config/autoload/security-authentication.local.php"/> <echo message="${sec.config}" file="${project.basedir}/config/autoload/security-authentication.local.php"/>
</target> </target>
@ -110,5 +112,5 @@
<target name="init" <target name="init"
description="Setup external dependencies and migrate data" description="Setup external dependencies and migrate data"
depends="setup-db, db-migration"/> depends="setup-sec-auth, setup-db, db-migration"/>
</project> </project>